我编写了一个简单的while循环程序,编辑器窗口没有显示错误,但是当我运行该程序时,控制台没有显示输出。
我已经调整了控制台的首选项,切换了限制控制台的输出和固定宽度的控制台选项,我还尝试将输出更改为系统上其他位置的日志文件。
public class whileLoop {
public static void main(String[] args) {
int x = 10;
while (x < 20)
;
{
System.out.print("Value of X is: " + x);
x++;
System.out.print("\n");
}
}
}
预期结果应列为: x的值为10 x的值为11 x的值为12 x的值为13 ...
但是我什么也没显示在屏幕上。
答案 0 :(得分:0)
您在代码中添加了额外的;
。试试这个:
public class whileLoop {
public static void main(String[] args) {
int x = 10;
while (x < 20) {
System.out.print("Value of X is: " + x);
x++;
System.out.print("\n");
}
}
}