using System;
using SystemCollectionsGeneric;
using SystemLinq;
using SystemText;
namespace CSharp001
{
class Program
{
static void Main(string[] args)
{
int nScore = 0;
ConsoleWriteLine("请输入分数:");
string strScore = ConsoleReadLine();
nScore = ConvertToInt32(strScore);
if (nScore >= 90)
{
ConsoleWriteLine("优秀");
}
else if (nScore >= 70)
{
ConsoleWriteLine("中等");
}
else if (nScore >= 60)
{
ConsoleWriteLine("合格");
}
else
{
ConsoleWriteLine("不合格");
}
}
}
}
运行结果:
以上就是关于C#程序设计,详细写出代码全部的内容,包括:C#程序设计,详细写出代码、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)