2021-04-07

package edu.xcdq;

import java.util.Scanner;

public class Demo04 {

public static void main(String[] args) {

Scanner scanner =new Scanner(

System.in);

System.out.println("考试成绩是:");

int score = scanner.nextInt();

// 单独判断

if ( score ==80 ) {

System.out.println("A");

}

if (score <80 && score >=70 ) {

System.out.println("B");

}

if (score <70 && score >=60 ){

System.out.println("C");

}

if (score <60 ){

System.out.println("D");

}

// 多重if

if (score >=80 ){

System.out.println("A");

}else if (score >=70 ) {

System.out.println("B");

}else if (score >=60 ) {

System.out.println("C");

}else {

System.out.println("D");

}

// switch

switch (score/10) {

case 9:

case 8:

System.out.println("A");

break;

case 7:

System.out.println("B");

break;

case 6:

System.out.println("C");

break;

default:

System.out.println("D");

break;

}

}

}

©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • 夜莺2517阅读 127,828评论 1 9
  • 版本:ios 1.2.1 亮点: 1.app角标可以实时更新天气温度或选择空气质量,建议处女座就不要选了,不然老想...
    我就是沉沉阅读 11,866评论 1 6
  • 我是黑夜里大雨纷飞的人啊 1 “又到一年六月,有人笑有人哭,有人欢乐有人忧愁,有人惊喜有人失落,有的觉得收获满满有...
    陌忘宇阅读 12,753评论 28 53
  • 兔子虽然是枚小硕 但学校的硕士四人寝不够 就被分到了博士楼里 两人一间 在学校的最西边 靠山 兔子的室友身体不好 ...
    待业的兔子阅读 7,535评论 2 9

友情链接更多精彩内容