摘要:
Java 方法的定义与调用 package cn.geekeryi;public class TestMethod { public static int loveU(String name,int num) { System.out.println("I love U!"); System.out 阅读全文
摘要:
Java switch语句第二种用法 package cn.geekeryi; public class SwitchTest02 { public static void main(String[] args) { short month = 1; if (month==1||month==2|| 阅读全文
摘要:
Java switch语句 package cn.geekeryi; public class SwitchTest { public static void main(String[] args) { int grade = 2; if (grade==1){ System.out.println 阅读全文
摘要:
Java if-else if-else多选择结构代码 package cn.geekeryi; public class IfTest03 { public static void main(String[] args) { int age = (int) (100 * Math.random() 阅读全文
摘要:
Java if else双选择结构之计算圆的面积和周长 package cn.geekeryi; public class IfTest02 { public static void main(String[] args) { double r = Math.random()*4; double a 阅读全文