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

请问我的循环为什么只执行了一次就输出了

  if(score<60) {

           score++;

           count++;

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

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

           

       }else{

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

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

       }

        


提问者:王翀 2015-11-04 13:56

个回答

  • 天启之魂
    2015-11-04 14:03:03
    已采纳

    循环语句 有for 和while  请问你的循环在哪里.....