非常简单,但我似乎无法弄清楚,我只需要将 while 循环转换为 do-while。目标是打印 1-9 和 9-1 一个,例如“1,22,333,4444”等。如果你能帮助我,谢谢!
int y = 1;
int x = 1;
while (x < 10) {
y = 1;
while (y <= x) {
y++;
System.out.print(x + "");
}
System.out.println();
x++;
}
int a = 9;
int b = 1;
while (a >=1) {
b = 1;
while (b<= a) {
b++;
System.out.print(a + "");
}
System.out.println();
a--;
}
我的尝试打印 1-9 但作为单个数字并无限运行,但在第一次 9 之后不打印任何内容。
int c = 1;
int d =1;
do { System.out.print(c +"");
c++;
System.out.println();
}
while (c<10);{
y=1;
while (d<=c);
}