JAVA 编程题 对给定的3个数进行排序按从大到小的顺序排列输出

 我来答
198901245631
2015-11-05 · TA获得超过3.5万个赞
知道大有可为答主
回答量:9037
采纳率:92%
帮助的人:1748万
展开全部
实现思路:实际上就是先输入三个数,之后分别和另外两个数比较,之后从大到小进行数值替换,之后分别输出即可。
import javax.swing.JOptionPane;
public class Arrange{
public static void main (String args[]){
String str;
int x,y,z;
int temp;
str=JOptionPane.showInputDialog("请输入第一个数");
x=Integer.parseInt (str);
str=JOptionPane.showInputDialog("请输入第二个数");
y=Integer.parseInt (str);
str=JOptionPane.showInputDialog("请输入第三个数");
z=Integer.parseInt (str);

if(x>y) {
temp = y;
y = x;
x = temp;
}

if(y>z){
temp = y;
y = z;
z = temp;
}
if(x>y){
temp = y;
y = x;
x = temp;
}

System.out.println("从大到小排列="+z+" "+y+" "+x);

}
}
北冰洋之泪
2007-04-05
知道答主
回答量:35
采纳率:0%
帮助的人:0
展开全部
//第一种简单方法:
public class C123{
public static void main(String args[]){
int a=34,b=62,c=5;,smallest;
sort3(a,b,c);}
static void sort3(){
int temple;
if(x>y){temple=x;x=y;y=temple;}
if(x>z){temple=x;x=z;z=temple;}
if(y>z){temple=y;y=z;z=temple;}
System.out.println("Sorted:"+x+","+y+","+z);
return;
}
}

//第二种简单方法:
import java.util.*;
class ArraySort{
public static void main(String args[]){
int a[]={,23,64,25};
Arrays.sort(a);
for(i=0;i<a.lengh;i++)
System.out.println(a[i]+" ");
}
}
如果调用方法的话就更好了,你自己琢磨.
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友31bb31fbf
2007-03-29 · TA获得超过108个赞
知道答主
回答量:117
采纳率:0%
帮助的人:146万
展开全部
//[1]双循环排序
public void sort(int[] num) throws Exception
{
int temp=0;
for(int i=0;i<num.length;i++)
{
for(int j=i+1;j<num.length;j++)
{
if(num[i]<num[j])
{
temp=num[j];
num[j]=num[i];
num[i]=temp;
}
}
}
// 输出
for(int i=0;i<num.length;i++)
{
System.out.print(num[i]+",");
}
}
[2]单循环排序
/////////////////////////////
public void sort(int[] num) throws Exception
{
int findex=0;
int temp;
int eindex=num.length-1;
while(eindex>0)
{
if(findex<eindex)
{
if(num[findex]<num[eindex])
{
temp=num[eindex];
num[eindex]=num[findex];
num[findex]=temp;
}
++findex;
}else
{
--eindex;
findex=0;
}

}
//输出
for(int i=0;i<num.length;i++)
{
System.out.print(num[i]+",");
}
}
把三个数放到数组中,调用函数即可。
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式