摘要:
1 package method; 2 3 public class Demo05 { 4 public static void main(String[] args) { 5 Demo05 demo05 = new Demo05(); 6 demo05.test();//StackOverflow 阅读全文
摘要:
数组:一个类型所有数字的集合。 数组的下标从0开始。10个数字,最大下标是9。 阅读全文
摘要:
1 package array; 2 3 public class ArrayDemo01 { 4 //变量的类型 变量的名字 = 变量的值 5 //数组类型 6 public static void main(String[] args) { 7 int[] nums;//1.声明一个数组 8 n 阅读全文
摘要:
1 package method; 2 3 public class Demo03 { 4 public static void main(String[] args) { 5 //args.length数组长度 6 for (int i = 0; i < args.length; i++) { 7 阅读全文
摘要:
1 package method; 2 3 public class Demo04 { 4 public static void main(String[] args) { 5 Demo04 demo04 = new Demo04(); 6 demo04.test(1,2,3,4,5,6,7); 7 阅读全文
摘要:
1 package method; 2 3 public class Demo01 { 4 //main方法 5 public static void main(String[] args) { 6 int sum = add(1,2); 7 System.out.println(sum); 8 t 阅读全文
摘要:
1 package method; 2 3 public class Demo02 { 4 public static void main(String[] args) { 5 int max = max(20, 10); 6 System.out.println(max); 7 } 8 //比大小 阅读全文
摘要:
1 package method; 2 3 public class Demo02 { 4 public static void main(String[] args) { 5 double max = max(20, 10); 6 System.out.println(max); 7 } 8 // 阅读全文