我正在使用带有 do while 循环的 if 条件语句。我希望每次编译器运行程序时,它都应该在“IF”中打印语句,直到它小于 15打印一次?我哪里错了。如果有人解释流程,我会非常感激,因为我是初学者。请参阅下面的代码:
package loopexamples2;
public class DoWhileLoop {
public static void main(String[] args) {
int n = 1;
if(n<15)
System.out.println("print value of n is equal to"+ n);
do {
System.out.println(n);
n++;
}
while(n<10);
}
}
output--> 打印 n 的值等于 1 1 2 3 4 5 6 7 8 9