2018-10-31zuoye

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();

你可能感兴趣的:(2018-10-31zuoye)