用java语言编写一程序来接受用户输入的5个整数值,把这些数存放到一个数组中,正、倒序输出,并输出最大值

 我来答
Jseven_jy
2011-03-10 · TA获得超过8122个赞
知道大有可为答主
回答量:2499
采纳率:100%
帮助的人:1119万
展开全部
import java.util.Scanner;

public class Test{
public static void main(String[] ars){
int[] arr = new int[5];
Scanner in = new Scanner(System.in);
int max = 0;
for(int i = 0;i<5;i++){
arr[i] = in.nextInt();
if(max<arr[i])
max = arr[i];
}

System.out.println("max = "+max);
for(int i = 4;i>=0;i--)
System.out.print(arr[i]+"\t");
}
}
运行结果:
若输入 1 2 3 4 5
结果如下:
max = 5
5 4 3 2 1

希望对你有帮助。。。。
flyingFish211
2011-03-10 · TA获得超过2.1万个赞
知道大有可为答主
回答量:1.5万
采纳率:50%
帮助的人:1.1亿
展开全部
import java.util.Arrays;
import java.util.InputMismatchException;
import java.util.Scanner;

public class ABC {

public static void main(String[] args) throws Exception {

final int count = 5;
int[] ary = getInput(count);

Arrays.sort(ary);

System.out.println("Integer numbers inputed in ASC order is: ");
for(int value: ary){
System.out.print(value + "\t");
}

System.out.println("\nInteger numbers inputed in DESC order is: ");

for(int i = ary.length; i > 0; i--){
System.out.print(ary[i-1] + "\t");
}

int max = ary[ary.length-1];
System.out.println("\n\nMax of the input is: " + max);
}

private static int[] getInput(int count) {
int[] ary = new int[count];

int i = 0;

while(i < count){
boolean isValidInput = true;

while(isValidInput){
try{
System.out.print("Please input an integer for number " + (i+1) + ": ");
Scanner scanner = new Scanner(System.in);

ary[i] = scanner.nextInt();
i++;
isValidInput = false;
}catch(InputMismatchException mismatchExp){
System.out.println("Only int value allowed. Please input an integer: ");
}
}

}

return ary;
}
}

--------------------------------
Please input an integer for number 1: 25
Please input an integer for number 2: aa
Only int value allowed. Please input an integer:
Please input an integer for number 2: 369
Please input an integer for number 3: 23.355
Only int value allowed. Please input an integer:
Please input an integer for number 3: 128
Please input an integer for number 4: 648
Please input an integer for number 5: 9978
Integer numbers inputed in ASC order is:
25 128 369 648 9978
Integer numbers inputed in DESC order is:
9978 648 369 128 25

Max of the input is: 9978
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ymqbp
2011-03-25
知道答主
回答量:2
采纳率:0%
帮助的人:0
展开全部
加个for循环
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式