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

为什么score+1可以,score++就不行了呢?

 public static void main(String[] args){

   

     // 变量保存成绩

        int score = 53; 

        int count = 0;

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

            do{

      score=score+1;

      count=count+1;

       }

        while(score<60);

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

        System.out.println("加分次数"+count);

        

       

        

        

      

    }


提问者:康笑寒 2016-03-17 16:10

个回答

  • 凡尘96
    2016-05-02 16:22:14

    ++score也可以

  • 轻声笑语
    2016-03-17 16:28:50

    可以啊

    do{
    score++;
    count++;
    }while(score<60)