确定编译和执行后输出显示的次数

时间:2016-10-14 10:17:04

标签: java

我一直试图解决这个问题:

int i = 11;
while(i>=0);
{ 
System.out.println("Computer");
i--;
}

现在我的问题是代码会显示字符串“Computer”多少次? 我试图编译但失败了,这个错误弹出

无法找到或加载主类未定义

1 个答案:

答案 0 :(得分:0)

使用像这样:

  public class test{

        public static void main(String[] args) {
                   int i = 11;
                  while(i>=0);
                   { 
                         System.out.println("Computer");
                     i--;
                 }
         }
    }