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

这段代码里面的for语句总是报错 不知为何

public static void main(String[] args){

   int score = 53; 

   int count = 0;

   System.out.println(score);

   for(count ;score<60;count++ ){

    score++;

   }

   System.out.println(score);

}


正在回答

2 回答

public static void main(String[] args){

   int score = 53; 

   int count;

   System.out.println(score);

   for(count=0 ;score<60;count++){

        score++;

   }

   System.out.println(score);

}


这样试试呢,本地没测试环境,你自己测一下吧



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

jerseyyu 提问者

java 的for语句必须要括号里面初始化吗?
2015-07-31 回复 有任何疑惑可以回复我~

不是的,可以外部初始化

 int count = 0;

for( ;score<60;count++ ){

    score++;

   }


这样写

否则for循环第一个值只写count不能单独成句,导致出错


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

jerseyyu 提问者

理解了,谢谢。 还以为跟cpp一样
2015-07-31 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

这段代码里面的for语句总是报错 不知为何

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