package mypackage.OrderInt4;
/*求用java比较四个数大小源代码 (初学者 希望朋友给的代码是基础的那种) 老师说只要两个类 其中一个类从另一个类里调用*/
public class TestOrder {
public static void main(String[] args) {
int[] array = { 11, 77, 22, 44 };
// 也可以从控制台输出
int[] newArray = Order.orderBy(array);
for (int i = 0; i < newArray.length; i++) {
System.out.println(newArray[i] + " ");
}
}
}
class Order {
public static int[] orderBy(int[] intArray) {
int tempArray[] = intArray;
int length = tempArray.length;
int tempValue = 0;
for (int i = 0; i < length; i++) {
for (int j = i + 1; j < length; j++) {
if (tempArray[i] > tempArray[j]) {
tempValue = tempArray[i];
tempArray[i] = tempArray[j];
tempArray[j] = tempValue;
}
}
}
return tempArray;
}
}
有QQ吗