两年前


私信TA

用户名:3324552283

访问量:5061

签 名:

等  级
排  名 154
经  验 7210
参赛次数 12
文章发表 31
年  龄 0
在职情况 学生
学  校 886机器人大专
专  业

  自我简介:

TA的其他文章

参考代码:

import java.util.Scanner;


public class Main{

    public static void main(String[] args){


        Scanner sc = new Scanner(System.in);

        int x = sc.nextInt();

        if (x>=90){

            System.out.println("A");

        }else if (x>80 && x<=89){

            System.out.println("B");

        }else if (x>70 && x<=79){

            System.out.println("C");

        }else if (x>60 && x<=69){

            System.out.println("D");

        }else {

            System.out.println("E");

        }

    }

}


 

0.0分

1 人评分

  评论区

  • «
  • »