标签:style blog color java ar strong div sp log
本题要求编写程序将一个百分制成绩转换为五分制成绩。转换规则:
输入格式:输入在一行中给出1个整数的百分制成绩。
输出格式:在一行中输出对应的五分制成绩。
输入样例:90import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner score = new Scanner(System.in); int s = score.nextInt(); if(s >= 90) System.out.print("A"); else { if(s >= 80) System.out.print("B"); else { if(s >= 70) System.out.print("C"); else { if(s >= 60) System.out.print("D"); else System.out.print("E"); } } } } }
标签:style blog color java ar strong div sp log
原文地址:http://www.cnblogs.com/lsgcoder101/p/3968775.html