using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Review
{
class Program
{
static void Main(string[] args)
{
#region 用方法来实现:计算两个数的最大值。思考:方法的参数?返回值?
//Console.Write("请输入一个整数:");
//int n1 = Convert.ToInt32(Console.ReadLine());
//Console.Write("请再输入一个整数:");
//int n2= Convert.ToInt32(Console.ReadLine());
//int max = GetMaxValue(n1, n2);
//Console.WriteLine("最大值是:{0}", max);
//Console.ReadKey();
//扩展(*):计算任意多个数间的最大值(提示:param