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

大佬们帮我看看对不对

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);


提问者:weixin_慕仔1263912 2024-06-02 18:39

个回答

  • 辉夜公子
    2024-09-11 15:43:04

    不能这样写,你这样写是通过结果来自己判断加了七次。你的逻辑应该是加多少次是未知的才对