关键代码:
internal class Program
{
static void Main(string[] args)
{
//判断80 x 5与412的之间的大小关系
int n1 = 80 * 5;
if (n1 == 412)
{
Console.WriteLine("80 x 5等于412");
}
else if (n1 > 412)
{
Console.WriteLine("80 x 5大于412");
}
else {
Console.WriteLine("80 x 5小于412");
}
Console.ReadKey();
}
}
}
评论