public class HelloWorld {
public static void main(String[] args) {
// 变量保存成绩
int score = 53;
// 变量保存加分次数
int count = 0;
System.out.printle("加分前成绩":+score);
//打印输出加分前成绩
while(score,60){
score++;
count++;
}
System.out.println("加分后的成绩");
System.out.println("共加了"+count+"次!");
// 只要成绩小于60,就循环执行加分操作,并统计加分次数
public static void main(String[] args) {
int score = 53;
int count = 0;
System.out.println("加分前成绩:"+score); //感叹号位置错误
//打印输出加分前成绩
while(score<60){ //表达式错误
score++;
count++;
}
System.out.println("加分后的成绩"+score); //没有加变量名
System.out.println("共加了"+count+"次!");
// 只要成绩小于60,就循环执行加分操作,并统计加分次数
}
} //花括号少了两个