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

为什么WHILE句式可以,for句式是错误的

public class HelloWorld {

    public static void main(String[] args) {

        

        // 变量保存成绩

        int score = 53; 

        

        // 变量保存加分次数

        int count = 0;{

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


        //打印输出加分前成绩 

       while (score<60)

       {score++;

       count++;}

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

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

 这个可以运行正确

public class HelloWorld {

    public static void main(String[] args) {

        

        // 变量保存成绩

        int score = 53; 

        

        // 变量保存加分次数

        int count = 0;{

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


        //打印输出加分前成绩 

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

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

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

       

      


正在回答

3 回答

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

           count++;

        }

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

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

你对for循环的语法掌握的不清楚,建议去看看前面章节,按我这个代码去试试。


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

// 变量保存成绩

        int score = 53; 

        

        // 变量保存加分次数

        int count = 0;{

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


        //打印输出加分前成绩 

        for  (int n = count; score<60;count++){

           score++;

        }

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

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


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

应改为for(;score<60;score++)

count++;

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

举报

0/150
提交
取消

为什么WHILE句式可以,for句式是错误的

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