首先声明一个方法名compare1的方法(也可以直接在main函数中执行)
public static void compare1() {
/**
* 从键盘录入几个数,求取最大值
*/
System.out.println("从键盘录入5个数:");
Scanner sc = new Scanner(System.in);
int arr[] = new int[5];
for(int i = 0;i<5;i++) {
arr[i] = sc.nextInt();
}
System.out.println("新的数组排序之前为"+Arrays.toString(arr));
Arrays.sort(arr); //数组进行升序排列
System.out.println("数组排序后"+Arrays.toString(arr));
System.out.println("最大值为:"+arr[arr.length-1]); //数组中的下标为数组长度减去一的即为最大值
}
执行结果:
原文地址:https://www.cnblogs.com/jasontsui71/p/10052330.html
时间: 2024-10-13 11:22:25