用java 输入三个整数 按从小到大的顺序排列这三个整数

 我来答
永恒扬光6s
2011-08-30 · TA获得超过183个赞
知道小有建树答主
回答量:265
采纳率:0%
帮助的人:148万
展开全部
那我给你一个用控制语句语句写的
public class Sort{
public static void main(String args[]){
Scanner in= new Scanner(System.in);
System.out.println("请输入3个整数:");
int a,b,c;
int max,other1,other2;
a=in.nextInt();
b=in.nextInt();
c=in.nextInt();
if(a>b&&a>c){
max=a;
other1=b;
other2=c;
}
else if(b>a&&b>c){
max=b;
other1=a;
other2=c;
}
else{
max=c;other1=a;other2=b
}
iif(other1>other2){
System.out.println(other2);
System.out.println(other1);
}
System.out.println(max);
}

}直接在网页上写的,你看看吧,希望你明白
flyingFish211
2011-08-30 · TA获得超过2.1万个赞
知道大有可为答主
回答量:1.5万
采纳率:50%
帮助的人:1.1亿
展开全部
import java.util.Arrays;
import java.util.Scanner;

public class C {

public static void main(String[] args) {

int[] ary = new int[3];

System.out.print("Please input 3 integer, sepeart with comma(,): ");
String[] strAry = new Scanner(System.in).nextLine().split(",\\s*");

for(int i = 0; i < strAry.length; i++){
ary[i] = Integer.parseInt(strAry[i]);
}

Arrays.sort(ary);

for(int i = 0;i < ary.length; i++){
System.out.println(ary[i] + "\t");
}

}

}
-----------------------
Please input 3 integer, sepeart with comma(,): 12, 6, 58
6
12
58
追问
挺好 就是看不懂 我才学到控制语句
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式