本帖最后由 刘松703 于 2013-12-20 00:06 编辑
- <P>public class Demo2 {
- public static void main(String[] args) {
- int[] arr = { 3, 5, 6, 2, 8, 4, 9 };
- order(arr);
- }
- public static void order(int[] arr) {
- for (int i = 0; i < arr.length - 1; i++) {
- int temp = 0;
- for (int j = 0; j < arr.length - i - 1; j++) {
- if (arr[temp] < arr[j + 1]) {
- temp = j + 1;
- }
- }
- if (temp != arr.length - 1 - i) {
- int Arrtemp = arr[temp];
- arr[temp] = arr[arr.length - i - 1];
- arr[arr.length - i - 1] = Arrtemp;
- }
- }
-
- for (int i = 0; i < arr.length; i++) {
- System.out.print(arr[i]);
- }
- }
- }
复制代码
路给你修改了,自己比较一下把,主要是条件错了。
|