急想知道排序问题
static void Main(string[] args)
{
Console.Write("输入数组:");
int[] Arry = new int[100];
for (int i = 0; i < 100; i++)
{ Arry[i] = Convert.ToInt32(Console.Read()); }
Sort c1 =new Sort( Arry);
Console.WriteLine("冒泡排序:");
if (c1 != null)
{
for (int i = 0; i < c1.Count; i++)
{
Console.WriteLine(c1.maopaoSort(Arry) + ",");
}
}
请问我这程序错在哪里,是不是if中的for语句有错,我想把输入的数排序,我觉得有很多错,但找不出来。