Java——小程序练习一

2019-08-16 10:24:31来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

Java——小程序练习一

编写程序:由键盘输入给出一个百分制成绩,要求输出成绩等级’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("很显然,这成绩是假滴!");
    }
  }
}


原文链接:https://www.cnblogs.com/jjking/p/11191101.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:手撕面试官系列(三):微服务架构Dubbo+Spring Boot+Spring Cloud

下一篇:Java程序员编程性能优化必备的34个小技巧