这里有答案

来源:5-1 编程练习

weixin_精慕门839679

2019-10-30 00:10

// 变量保存成绩
        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回答

  • 慕前端2135441
    2019-10-31 20:02:57

    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+"次!");

    }

     

     

     

     }


Java入门第一季(IDEA工具)升级版

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

1165172 学习 · 17581 问题

查看课程

相似问题