给任意个数排序
using System;class Myclass
{
static void Main()
{
Console.WriteLine("你想为几个数排序?");
int a=int.Parse(Console.ReadLine());
int []b=new int[a];
for(int m=1;m<=a;m++)
{
Console.WriteLine("Please input the "+m+" shu:");
b[m-1]=int.Parse(Console.ReadLine());
}
Array.Sort(b);
Console.WriteLine("这几个数按照从小到大的顺序排列是:");
for(int n=0;n<=b.Length-1;n++)
{
Console.Write(" "+b[n]);
}
System.Threading.Thread.Sleep(30000);
}
}