美文网首页
第四节课第一个作业

第四节课第一个作业

作者: 起个名真难_9489 | 来源:发表于2018-10-31 14:41 被阅读0次


#代码

Console.WriteLine("请输入苏哥哥的语文成绩");

string str_chinese = Console.ReadLine();

int chinese = Convert.ToInt32(str_chinese);

Console.WriteLine("请输入苏哥哥的数学成绩");

string str_math = Console.ReadLine();

int math= Convert.ToInt32(str_math);

Console.WriteLine("是否正确");

bool b = chinese > 90 || math > 90;

Console.WriteLine(b);

Console.ReadKey();

#效果

第四节课第一个作业

相关文章

网友评论

      本文标题:第四节课第一个作业

      本文链接:https://www.haomeiwen.com/subject/uwdatqtx.html