代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
/**
*1让用户输入苏小鬼的语文和数学成绩,输出以下判断是否正确,正确输出True,错误输出False
* 2语文和数学有一门是大于90分的
*
*
* */
//1提示用户输入
Console.WriteLine("请输入苏小鬼的语文成绩:");
//接受用户数输入
string strchinese = Console.ReadLine();
//转换成数字型数值
int chinese = Convert.ToInt32(strchinese);
Console.WriteLine("请输入苏小鬼的数学成绩:");
string strmaths = Console.ReadLine();
int maths = Convert.ToInt32(strmaths);
//输出结果
bool b = chinese > 90 || maths > 90;
Console.WriteLine("苏小鬼的语文和数学有一门是大于90分:{0}",b);
Console.ReadKey();
}
}
}
网友评论