C#第四次作业01
2018-10-31 本文已影响0人
谭叁叁
#作业要求
让用户输入苏小鬼的语文和数学成绩,输出以下判断是否正确,正确输出True,错误输出False
#程序
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入苏小鬼的语文成绩");
int chinese=Convert.ToInt32(Console.ReadLine());
Console.WriteLine("请输入苏小鬼的数学成绩");
int math=Convert.ToInt32(Console.ReadLine());
bool b=chinese>90||math>90;
Console.WriteLine(b);
Console.ReadKey();
}
}
}