使用Array.Sort 方法,先对数组进行升序排序,然后第一个数为最小数,最后一个数为最大数;
示列:using System;
using System.Collections.Generic;
using System.Text;
namespace 求最大数和最小数
{
class Program
{
static void Main(string[] args)
{
int [] arry=new int[] {10,5,84,111,8,79,14,2,245};
Array.Sort(arry);
Console.WriteLine("最小数为"+arry[0]+"\n" + "最大数为" + arry[arry.Length - 1]);
Console.ReadKey();
}
}
} |