摘要: 1.for循环:public class test1 { public static void main(String[] args) { int sum=0; for (int i=1;i<=100;i++){ sum+=i; } System.out.println("sum="+sum); } 阅读全文
posted @ 2022-09-18 11:11 wshidaboss 阅读(362) 评论(0) 推荐(0) 编辑
摘要: public class test1 { public static void main(String[] args) { int[] arr={99,25,34,48,63,78,101,71,12}; int max=arr[0]; for (int i=0;i<arr.length;i++){ 阅读全文
posted @ 2022-09-18 10:52 wshidaboss 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 所谓方法重载,就是在同一个作用域内,方法名相同但参数个数或者参数类型不同的方法。 public class test1 { public static void main(String[] args) { //方法调用 int sum1=add(1,2); int sum2=add(1,2,3); 阅读全文
posted @ 2022-09-18 09:55 wshidaboss 阅读(69) 评论(0) 推荐(0) 编辑
摘要: public class test1 { public static void main(String[] args){ printRectangle(3,5); //调用printRectangle方法实现打印矩形 printRectangle(2,4); printRectangle(6,10) 阅读全文
posted @ 2022-09-18 09:37 wshidaboss 阅读(546) 评论(0) 推荐(0) 编辑
摘要: 1.break语句: 1)打印直角三角星型 public class test1 { public static void main(String[] args){ int i,j; for(i=1;i<=9;i++) { //外层循环 if (i > 4) { break; //跳出外层循环 } 阅读全文
posted @ 2022-09-18 09:23 wshidaboss 阅读(41) 评论(0) 推荐(0) 编辑