package com.heima.Coding; import java.util.Scanner; /*利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用A表示,60-89分之间的用B表示,60分以下的用C表示。 程序分析:(a>b)?a:b这是条件运算符的基本例子。 */ public class Test05 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print("请输入成绩:"); int n = 0; while (true) { String s = sc.nextLine(); String regex = "\\d+"; if (s.matches(regex)) { n = Integer.parseInt(s); if (n <= 100 && n >= 0) { break; } else { System.out.print("成绩录入有误,请重新输入成绩:"); } }else { System.out.print("成绩录入有误,请重新输入成绩:"); } } if (n <= 100 && n >= 0) { if (n <= 100 && n >= 90) { System.out.println("成绩为A"); } else { System.out.println(n <= 89 && n >= 60 ? "成绩为B" : "成绩为C"); } } } }
时间: 2024-10-03 22:47:23