为了账号安全,请及时绑定邮箱和手机立即绑定

为什么不是正确的运行效果 但我又通过了

 int score = 53; 

        

        // 变量保存加分次数

        int count = 0;


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

        //打印输出加分前成绩 

          

      if (score<60){

          while(score<60){

              score++;

              count++;

          }

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

        System.out.print("共加了"+count_+"次");

运行结果error: cannot find symbol
System.out.print("???"+count_+"?");
^
symbol: variable count_
location: class HelloWorld
1 error

正在回答

1 回答

 System.out.print("共加了"+count_+"次");

这里count_多打了个_,去掉就好了。

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


0 回复 有任何疑惑可以回复我~
#1

soider 提问者

非常感谢!
2015-06-05 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么不是正确的运行效果 但我又通过了

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信