摘要: 冒泡排序: 1 int[] noSortArray = new int[] {10,100,30,50,70,16,11,5,7,9 }; 2 Console.WriteLine("数组内容为:" + "10,100,30,50,70,16,11,5,7,9"); 3 int tempusOne; 4 for (int i = noSortArray.Length-1; i>0;i-- ) 5 { 6 for (int j = 0; j<i;... 阅读全文
posted @ 2012-11-06 19:53 Justin Liu 阅读(191) 评论(0) 推荐(0) 编辑