2018-10-31作业一

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-31作业一_第1张图片
图片发自App

你可能感兴趣的:(2018-10-31作业一)