任务描述
本关任务:编写一个程序,实现从键盘输入的两个整数,输出两个整数的最大值。
测试说明
平台会对你编写的代码进行测试:
测试输入:
4
91
预期输出:
最大值:91
测试输入:
151
100
预期输出:
最大值:151
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ch402
{
class Program
{
static void Main(string[] args)
{
/******begin*******/
int a = int.Parse(Console.ReadLine());
int b = int.Parse(Console.ReadLine());
if(a>b){
Console.WriteLine("最大值:{0}",+a);
}
else{
Console.WriteLine("最大值:{0}",+b);
}
/*******end********/
}
}文章来源:https://www.toymoban.com/news/detail-855695.html
}文章来源地址https://www.toymoban.com/news/detail-855695.html
到了这里,关于C#:求两个整数的最大值的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!