问答详情
源自:5-1 编程练习

编程练习题

为什么这段代码放在Myeclipse里面就不行了呢。提示有错误

package newnew;


public class helloword {
 public static void main(String[] args){
 int score =53;
 int count =0;
 System.out.println("加分前成绩:"+score);
 while(score>=60){
  score=score+1;
  count++;
 }
 System.out.println("加分后成绩:"+score);
 System.out.println("共加了+count+次!");
}
}

错误提示:Description Resource Path Location Type
The value of the local variable count is not used helloword.java /wenwen/src/newnew line 6 Java Problem

提问者:Sevenwenwen 2015-11-15 16:40

个回答

  • jinghuan
    2015-11-28 10:55:48

    while是当条件满足时执行,应该改为score<60,你这样程序不满足不能执行,另外楼上指出了,你最后一行差标点符号了~~错误提示里面有说第六行

    public class HelloWorld {
        public static void main(String[] args) {
            
            // 变量保存成绩
            int score = 53; 
            
            // 变量保存加分次数
            int count = 0;   
      
     System.out.println("加分前成绩:"+score);
     while(score<=60){
      score=score+1;
      count++;
     }
     System.out.println("加分后成绩:"+score);
     System.out.println("共加了"+count+"次!");
    }
    }


  • Leiky灬
    2015-11-20 21:03:07

    ("共加了"+count+"次!");