作业要求
代码
...
namespace _1
{
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();
}
}
}
...