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

这里有答案

// 变量保存成绩
        int score = 53;

        // 变量保存加分次数
        int count = 0;


        //打印输出加分前成绩
        System.out.println(score);
        // 只要成绩小于60,就循环执行加分操作,并统计加分次数
        for (int i=0;i<60;i++){
            int a=score+i;
            int b=count+i;
            if (a==60){
                System.out.println("加分后成绩"+a);
                System.out.println("用了"+b+"次");

            }
        }

              do {
                  score++;
                  count++;
                  if (score==60){
                      System.out.println(score);
                      System.out.println(count);
                  }

              }while (score<60);

正在回答

1 回答

package com.imooc;


public class demo01 {

 public static void main(String[] args){

int score=53;

int count=0;

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

while(score<60){

score++;


count++;

}

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

}

 

 

 

 }


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

举报

0/150
提交
取消
Java入门第一季(IDEA工具)升级版
  • 参与学习       1165152    人
  • 解答问题       17581    个

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

进入课程

这里有答案

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