上一页 1 2 3 4 5 6 7 8 ··· 13 下一页
摘要: 阅读全文
posted @ 2020-07-30 17:39 极客易先生 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 需求: 有一对兔子,从出生后第3个月起每个月都生一对兔子, 小兔子长到第三个月后每个月又生一对兔子, 假如兔子都 不死,问第二十个月的兔子对数为多少? 代码: package com.geekeryi; public class 不死神兔 { public static void main(Stri 阅读全文
posted @ 2020-07-30 11:38 极客易先生 阅读(818) 评论(0) 推荐(0) 编辑
摘要: Java 类的定义与调用 package cn.itbaizhan; public class SxtStu { int id; String name; int age; void learn(){ System.out.println(id+"号"+name+"在学习年龄"+age); } // 阅读全文
posted @ 2020-07-22 14:46 极客易先生 阅读(333) 评论(0) 推荐(0) 编辑
摘要: Java 递归求阶乘 package cn.geekeryi; public class DiGui { public static void main(String[] args) { System.out.println(factorial(5)); } static long factoria 阅读全文
posted @ 2020-07-22 10:45 极客易先生 阅读(456) 评论(0) 推荐(0) 编辑
摘要: Java 方法的定义与调用 package cn.geekeryi;public class TestMethod { public static int loveU(String name,int num) { System.out.println("I love U!"); System.out 阅读全文
posted @ 2020-07-21 21:39 极客易先生 阅读(202) 评论(0) 推荐(0) 编辑
摘要: Java 嵌套循环之九九乘法表 package cn.geekeryi; public class JiuJiuChengFa { public static void main(String[] args) { for(int i=1;i<=9;i++){ for(int j=1;j<=i;j++ 阅读全文
posted @ 2020-07-21 21:28 极客易先生 阅读(365) 评论(0) 推荐(0) 编辑
摘要: Java switch语句第二种用法 package cn.geekeryi; public class SwitchTest02 { public static void main(String[] args) { short month = 1; if (month==1||month==2|| 阅读全文
posted @ 2020-07-21 19:34 极客易先生 阅读(212) 评论(0) 推荐(0) 编辑
摘要: Java switch语句 package cn.geekeryi; public class SwitchTest { public static void main(String[] args) { int grade = 2; if (grade==1){ System.out.println 阅读全文
posted @ 2020-07-21 19:08 极客易先生 阅读(198) 评论(0) 推荐(0) 编辑
摘要: Java if-else if-else多选择结构代码 package cn.geekeryi; public class IfTest03 { public static void main(String[] args) { int age = (int) (100 * Math.random() 阅读全文
posted @ 2020-07-21 15:24 极客易先生 阅读(209) 评论(0) 推荐(0) 编辑
摘要: Java if else双选择结构之计算圆的面积和周长 package cn.geekeryi; public class IfTest02 { public static void main(String[] args) { double r = Math.random()*4; double a 阅读全文
posted @ 2020-07-20 23:29 极客易先生 阅读(482) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 13 下一页