public class HelloWorld {
public static void main(String[] args) {
// 变量保存成绩
int score = 53;
// 变量保存加分次数
int count = 0;
for(int i = 1;i<=7;i++){
count +=1;
}
score = score + count;
//打印输出加分前成绩
System.out.println(score);
不能这样写,你这样写是通过结果来自己判断加了七次。你的逻辑应该是加多少次是未知的才对