132-使用if else if else语句进行多条件判断

Posted wuxiaohui1983

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了132-使用if else if else语句进行多条件判断相关的知识,希望对你有一定的参考价值。

分支-if语句的其他结构

if (){
}else if(){
}else if(){
}else{
}

else if可以有0或者多个
else 只能有0或者1个

编写一段程序,运行时候向用户提问“你考了多少分?(0-100)” ,接受输入后判断其等级并显示出来。等级判断标准如下:
等级={优{90-100}; 良 {80-89}; 中{60-79}; 差{0-59}}

            Console.WriteLine("您考了多少分?");
            string str = Console.ReadLine();
            int score = Convert.ToInt32(str);
            if (score >= 90)
            {
                Console.WriteLine("优秀");
            }else if (score >= 80 && score <= 89)
            {
                Console.WriteLine("良");
            }else if (score >= 60 && score <= 79)
            {
                Console.WriteLine("中");
            }
            else
            {
                Console.WriteLine("差,继续努力哦!");
            }
            Console.ReadKey();

  







以上是关于132-使用if else if else语句进行多条件判断的主要内容,如果未能解决你的问题,请参考以下文章

33 if..else 结构 副本

java中那些情况使用if语句时可以不用else?

if-else语句中,if和else的配对原则各是啥

C语言里面if 和else的用法?

Java if else语句

在 if-else 语句中进行强制转换