java输入五个数排序

importjava.io.*;publicclasstest1{inta[]=newint[5];inti,j,temp;voidaccept(){try{Buffer... import java.io.*;
public class test1
{
int a[]=new int[5];
int i,j,temp;
void accept()
{
try
{
BufferedReader inObj=new BufferedReader
(new InputStreamReader(System.in));
System.out.println("请输入五个整数:");

for(i=0;i<5;i++)
{
a[i]=Integer.parseInt(inObj.readLine());
}
inObj.close();
}

catch(Exception e)
{
System.out.println(e);
}
}
void order()
{
for(i=0;i<4;i++)
for(j=0;j<4-i;j++)
if(a[j]<a[j+1])
{
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
System.out.println("这五个数的从大到小为:"+a[i]);

}

public static void main(String[] args)
{
test1 test1Obj=new test1();
test1Obj.accept();
test1Obj.order();
}

}
结果出来以后是这样的
这五个数的从大到小为:0
救命啊高手
再补充一下,按第一位大侠说的那样把输出语句放到里面那个循环里,得到的是5句“这五个数的从大到小为:0”
展开
 我来答
wangmeng07
推荐于2016-10-15 · TA获得超过290个赞
知道小有建树答主
回答量:214
采纳率:0%
帮助的人:196万
展开全部
//修改后的程序对输入格式有要求,在注释中已说明
import java.io.*;
public class test1 {
int a[] = new int[5];
int i, j, temp;

void accept() {
try {
BufferedReader inObj = new BufferedReader(new InputStreamReader(
System.in));
System.out.println("请输入五个整数:");

String s = inObj.readLine();//5 个数在一行中输入,数与数之间用空格分隔。
//readLine()将一整行作为一个String读入
String ss[] = s.split(" ");//将读入的String以“空格”分割为多个String
//分割后每个String对应输入的一个数
for (i = 0; i < 5; i++) {
a[i] = Integer.parseInt(ss[i]);
System.out.print(a[i] + " ");
}
inObj.close();
}

catch (Exception e) {
System.out.println("error1");
System.out.println(e);
}
}

void order() {
for (i = 0; i < 4; i++)
for (j = 0; j < 4 - i; j++)
if (a[j] < a[j + 1]) {
temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
}
for(i = 0; i < 5; i++)
{
System.out.println("这五个数的从大到小为:" + a[i]);
}

}

public static void main(String[] args) {
test1 test1Obj = new test1();
test1Obj.accept();
test1Obj.order();
}

}
xc00737
2010-05-08 · TA获得超过1358个赞
知道小有建树答主
回答量:905
采纳率:0%
帮助的人:640万
展开全部
把输出语句放到另外一个循环里面
你还没有完全排序完 你就输出了

我的意思是
for(i=0;i<4;i++)
{
for(j=0;j<4-i;j++){
if(a[j]<a[j+1])
{
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
}
}
for(int i=0;i<5;i++){
System.out.println("这五个数的从大到小为:"+a[i]);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
cc...2@126.com
2010-05-08 · TA获得超过429个赞
知道小有建树答主
回答量:218
采纳率:100%
帮助的人:262万
展开全部
import java.io.*;
public class test1 {
int a[] = new int[5];
int i, j, temp;

void accept() {
try {
BufferedReader inObj = new BufferedReader(new InputStreamReader(
System.in));
System.out.println("请输入五个整数:");

String s = inObj.readLine();//5 个数在一行中输入,数与数之间用空格分隔。
//readLine()将一整行作为一个String读入
String ss[] = s.split(" ");//将读入的String以“空格”分割为多个String
//分割后每个String对应输入的一个数
for (i = 0; i < 5; i++) {
a[i] = Integer.parseInt(ss[i]);
System.out.print(a[i] + " ");
}
inObj.close();
}

catch (Exception e) {
System.out.println("error1");
System.out.println(e);
}
}

void order() {
for (i = 0; i < 4; i++)
for (j = 0; j < 4 - i; j++)
if (a[j] < a[j + 1]) {
temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
}
for(i = 0; i < 5; i++)
{
System.out.println("这五个数的从大到小为:" + a[i]);
}

}

public static void main(String[] args) {
test1 test1Obj = new test1();
test1Obj.accept();
test1Obj.order();
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
x358011055
2010-05-08 · TA获得超过253个赞
知道小有建树答主
回答量:234
采纳率:55%
帮助的人:166万
展开全部
import java.io.*;
public class test1
{
int a[]=new int[5];
int i,j,temp;
void accept()
{
try
{
BufferedReader inObj=new BufferedReader
(new InputStreamReader(System.in));
System.out.println("请输入五个整数:");

for(i=0;i<5;i++)
{
a[i]=Integer.parseInt(inObj.readLine());
}
inObj.close();
}

catch(Exception e)
{
System.out.println(e);
}
}
void order()
{
for(i=0;i<4;i++)
for(j=0;j<4-i;j++)
if(a[j]<a[j+1])
{
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
for(i=0;i<5;i++){
System.out.println("这五个数的从大到小为:"+a[i]);}

}

public static void main(String[] args)
{
test1 test1Obj=new test1();
test1Obj.accept();
test1Obj.order();
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
fengke47111
2010-05-08 · TA获得超过145个赞
知道答主
回答量:196
采纳率:0%
帮助的人:165万
展开全部
双重FOR循环的第一个循环少一对括号,所以只导致你的输出只有一句.
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(4)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式