int[] scores = { 15, 26, 10, 67, 77, 123, 100, 123, 2, 70, 65, 544, 100 }; for(int i=0;i<scores.Length-1;i++) //控制比较趟数,这个循环控制趟数 { for(int j=0;j<scores.Length-i-1;j++) //控制每趟比较的次数 { if (scores[j] < scores[j + 1])//比较每趟里的元素大小 { int temp = scores[j]; scores[j] = scores[j + 1]; scores[j + 1] = temp; } } } foreach (int k in scores) { Console.WriteLine(k); } Console.ReadKey();
新闻热点
疑难解答