class Test_HelloWorld {
public static void main(String[]args) {
/*
1,在控制台输出1-10。
*/
//for循环。
for (int x1=1; x1<=10; x1++) {
System.out.println(x1);
}
System.out.println("-------------------------");
//while循环。
int x2 = 1;
while (x2<=10) {
System.out.println(x2);
x2++;
}
System.out.println("-------------------------");
//do while循环。
int x3 = 1;
do{
System.out.println(x3);
x3++;
}while(x3<=10);
System.out.println("-------------------------");
/*
}
} |
|