java键盘输入4个整数,保存在一维数组中,找出数组中的最大值,并在屏幕上输出结果
1个回答
展开全部
import java.util.Arrays;
public class NumTest {
// throws Exception 抛出异常
public static void main(String[] args) throws Exception {
int max,i;
int[] a = new int[4];
byte[] buf = new byte[50];
String s;
System.out.println("请输入数组中的四个数据:");
for (i = 0; i < 4; i++) {
System.out.println("第"+(i+1)+"个元素");
System.in.read(buf);
s = new String(buf);
a[i] = Integer.parseInt(s.trim());
}
max = a[0];
for (int j = 1; j < a.length; j++) {
if(a[j]>max){
max = a[j];//如果后面的元素比较大.就把后面的元素赋值给max
}
}
System.out.println("数组"+Arrays.toString(a)+"最大的元素是"+max);
}
}
输出
请输入数组中的四个数据:
第1个元素
8
第2个元素
-20
第3个元素
16
第4个元素
5
数组[8, -20, 16, 5]最大的元素是16
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询