首页 > 微信 > 详细

Java——小程序练习一

时间:2019-07-15 20:17:29      阅读:66      评论:0      收藏:0      [点我收藏+]

编写程序:由键盘输入给出一个百分制成绩,要求输出成绩等级’A’、’B’、’C’和’D’,90分以上为’A’,75~89为’B’,60~74为’C’,60分以下为’D’。

最开始写的方法:没有注意到百分制的限定,缺少条件分析,思考不到位。

public class Test01 {
  public static void main(String[] args) {
    Scanner scanner = new Scanner(System.in);
    int score = scanner.nextInt();
    if (score>=90) {
      System.out.println("A");
    }else if (score>=75 && score<=89) {
      System.out.println("B");
    }else if (score>=60 && score<=74) {
      System.out.println("C");
    }else if (score<60) {
      System.out.println("D");
    }
  }
}

改正后:

public class Test01 {
  public static void main(String[] args) {
    Scanner scanner = new Scanner(System.in);
    int score = scanner.nextInt();
    if (score>=90&&score<=100) {
      System.out.println("A");
    }else if (score>=75 && score<=89) {
      System.out.println("B");
    }else if (score>=60 && score<=74) {
      System.out.println("C");
    }else if (score<60&&score>=0) {
      System.out.println("D");
    }else{
      System.out.println("很显然,这成绩是假滴!");
    }
  }
}

Java——小程序练习一

原文:https://www.cnblogs.com/jjking/p/11191101.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!