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
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+"次!"); } }
("共加了"+count+"次!");
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题