为什么加分次数还是1

来源:4-8 Java循环语句之 do...while

孤诉丶

2017-02-22 17:33

http://img.mukewang.com/58ad5acd0001e27310370645.jpg

为什么加分次数还是1

写回答 关注

2回答

  • qq_木头人_19
    2017-02-22 20:44:11
    已采纳

    我理解的的意思;  但是你写的不对;应该这样写,把这个和你自己写的对比一下就知道哪里有问题了

    package hello;


    public class tezt03 {

    public static void main(String[] args) {

    int score=53;

    int count=0;

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

    if(score>=60){

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

    System.out.println("加分次数"+count);

    }

    else{

    do{

    score++;

    count++;

    }

    while(score<60);

    System.out.println("加分后的分数"+score);

    System.out.println("加分次数"+count);

    }

    }

    }


    孤诉丶

    非常感谢!

    2017-02-28 15:28:27

    共 1 条回复 >

  • 圣神玫瑰
    2017-02-22 17:59:32

    用循环去做啊,if只是判断一次而已   在if的外面套层循环

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

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

1165172 学习 · 17581 问题

查看课程

相似问题