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

我这个代码出什么问题了么,怎么运行结果成这样了

https://img2.mukewang.com/5b4173c400010c5a08380366.jpg大神给看看吧

提问者:所谓怀念 2018-07-08 10:16

个回答

  • 燃烧的呆毛
    2018-07-08 11:33:21
    已采纳

    打印输出写在了for循环里当然会一直输出,循环几次就会输出几次

  • qq_哪里荒凉去哪里_0
    2018-08-10 13:46:03

     int score =53;
      //变量保存加分次数;
     int count=0;
      
     System.out.println("加分前成绩:"+ score);
     while (score<60)
     {
      count++;
      score++;
     }
      
     System.out.println("加分后成绩:"+score);
     System.out.println("加了"+count+"次");