编一个程序,输入0—100之间的一个学生成绩分数,用switch语句输出成绩等

usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;namespa... using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication25
{
class Program
{
static void Main(string[] args)
{
int botton ;
Console.WriteLine("请输入成绩");
botton = int.Parse(Console.ReadLine());
switch (botton)
{
case 1:
Console.Write("这枚同学成绩优秀!");
break;
case 2:
Console.Write("这枚同学成绩及格!");
break;
case 3:
Console.Write("这枚同学成绩不及格啊!");
break;
}

}
}
}

怎样把输入的数字变成case1,2,3,或者怎么把case1,2,3,变成成绩范围?
新手不懂,在线求解!
展开
 我来答
puck560301
2017-07-27 · TA获得超过4612个赞
知道小有建树答主
回答量:974
采纳率:75%
帮助的人:490万
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace hello_world
{
    class Program
    {
        static void Main(string[] args)
        {
            int level=0;  //成绩等级
            Console.WriteLine("请输入分数");
            int i = Convert.ToInt32(Console.ReadLine());
            if (i < 60) level = 1;
            else if (i >= 60 && i < 79) level = 2;
            else if (i >= 79 && i < 89) level = 3;
            else if (i <= 100 && i >= 90) level = 4;
            else level = 5;
            
            switch (level)
            {
                case 1:
                    Console.WriteLine("你的成绩是不及格");
                    break;
                case 2:
                    Console.WriteLine("你的成绩是中等");
                    break;
                case 3:
                    Console.WriteLine("你的成绩是良好");
                    break;
                case 4:
                    Console.WriteLine("你的成绩是优秀");
                    break;
                case 5:
                    Console.WriteLine("你输入的内容不正确");
                    break;
            }
            Console.ReadKey();
        }

    }
    }
匿名用户
2014-11-27
展开全部
int level; // 成绩等级
botton = int.Parse(Console.ReadLine());
if(botton<60) level=3; //60分以下不及格
else if(botton>=80) level=1; //80分以上优秀
else level=2;  // 60-80分为及格
switch (level)
{
                case 1:
                    Console.Write("这枚同学成绩优秀!");
                    break;
                case 2:
                    Console.Write("这枚同学成绩及格!");
                    break;
                case 3:
                    Console.Write("这枚同学成绩不及格啊!");
                    break;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
呼奇思3s
2018-12-24
知道答主
回答量:3
采纳率:0%
帮助的人:2298
展开全部

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

namespace sorce

{

class Program

{

static void Main(string[] args)

{

Console.WriteLine("请输入分数: ");

int s = int.Parse(Console.ReadLine());

s = s / 10;

switch (s)

{

case 6:Console.WriteLine("成绩及格"); break;

case 7: Console.WriteLine("成绩及格"); break;

case 8: Console.WriteLine("成绩良好"); break;

case 9: Console.WriteLine("成绩优秀"); break;

case 10: Console.WriteLine("成绩优秀"); break;

default:Console.WriteLine("成绩不及格");break;

}

Console.WriteLine("再接再厉!");

Console.ReadLine();

}

}

}


已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式