//数组类型public static void main(String[]args) { //变量类型 变量名字 =变量的值 int[]n...
Study_方法2 study_方法2 =new Study_方法2(); study_方法2.test(11, 34 ); public ...
//实际参数,实际用的参数 int x =max(20, 20); System.out.println(x); //引用参数,调试用 ...
break int i =0; if (i==30){while (i<100){ i++; System.out.println(i); ...
一至一百奇数偶数的和 for (int i =0; i <100; i++) //o是奇数s是偶数 if (i %2 !=0) o+=i; }e...
while: int a =1;//初始化条件 while (a<=100){//条件判断 System.out.println(a);//...
swich(1) //swich匹配一个具体值 char grade ='A'; switch (grade) {case'A':System....
嵌式结构 if (number<=100){ System.out.println("厉害"); if (number>=50){ Syst...
循环语句 //我们可以输入多个数字,并求其总和和平均数,每输入一个数按回车确认,通过非数字 //来结束并输出结果 Scanner...