摘要:
1.whille循环格式: package com.itheima.loop; public class While1 { public static void main(String[] args) { int i=0;//初始化语句 while(i<5){//循环条件 System.out.pr 阅读全文
摘要:
1.for循环: 2. 3.for循环案例 package com.itheima.loop; public class For2 { public static void main(String[] args) { for (int i = 0; i <=100 ; i++) { System.o 阅读全文