编程练习题

来源:5-1 编程练习

Sevenwenwen

2015-11-15 16:40

为什么这段代码放在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

写回答 关注

2回答

  • 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+"次!");
    }
    }


    jinghu...

    写错。。。是小于60,代码错误

    2015-11-28 11:00:19

    共 1 条回复 >

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

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

Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165172 学习 · 17581 问题

查看课程

相似问题