我一直试图解决这个问题:
int i = 11;
while(i>=0);
{
System.out.println("Computer");
i--;
}
现在我的问题是代码会显示字符串“Computer”多少次? 我试图编译但失败了,这个错误弹出
无法找到或加载主类未定义
答案 0 :(得分:0)
使用像这样:
public class test{
public static void main(String[] args) {
int i = 11;
while(i>=0);
{
System.out.println("Computer");
i--;
}
}
}