问答详情
源自:-

为指定成绩加分,直到分数大于等于 60 为止,输出加分前和加分后的成绩,并统计加分的次数,为什么代码是小于60?如下代码

public class HelloWorld {

    public static void main(String[] args) {

        

        // 变量保存成绩

        int score = 53; 

        

        // 变量保存加分次数

        int count = 0;

 System.out.println("加分前成绩:"+score);


        //打印输出加分前成绩 

        while(score<60){

            count++;

            score++;

        } 

       

        

        // 只要成绩小于60,就循环执行加分操作,并统计加分次数

        

       

        System.out.println("加分前成绩:"+score);

        System.out.println("共加了"+count+"次!");


提问者:山姆Huang 2015-07-07 21:03

个回答

  • 深白
    2015-07-07 21:58:04
    已采纳

    题意就这么难懂么?加到60,如果while(score<=60)的话,当加到score=60的时候,循环体内还得执行一次,score就是61了

  • qq_Thought坟场蹦迪_0
    2018-03-28 19:04:39

    用if怎么写出来就执行一次啊


  • Cherishme3834268
    2016-08-18 17:11:21

    等于60就不用加了啊 楼上这是什么问题


  • 山姆Huang
    2015-07-07 21:07:07

    求解,在线等


  • 山姆Huang
    2015-07-07 21:04:21

    为什么是while(score<60),而不是while(score<=60)