A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 15706025762 中级黑马   /  2015-8-30 23:37  /  360 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

:编写代码实现如下内容:if语句实现
考试成绩分等级。
        90~100        A等。
        80-89        B等。
        70-79        C等。
        60-69        D等。
        60以下        E等。
请根据给定成绩,输出对应的等级。

2 个回复

倒序浏览
class  IfTest
{
        public static void main(String[] args)
        {
                int score = 59;
                String level;

                if (score>=90 && score<=100)
                {
                        level = "A等";
                }
                else if (score>=80 && score<90)
                {
                        level = "B等";
                }
                else if (score>=70 && score<=80)
                {
                        level = "C等";
                }
                else if (score>=60 && score<=70)
                {
                        level = "D等";
                }
                else if (score>=0 && score<60)
                {
                        level = "E等";
                }
                else
                {
                        level = "分数输入有误";
                }

                System.out.println("成绩:"+score+"------"+level);

        }
}
回复 使用道具 举报
醉了醉了~~~
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马