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

2024-11-16 08:50:59
推荐回答(3个)
回答1:

实现思路:实际上就是先输入三个数,之后分别和另外两个数比较,之后从大到小进行数值替换,之后分别输出即可。
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);

}
}

回答2:

//第一种简单方法:
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;iSystem.out.println(a[i]+" ");
}
}
如果调用方法的话就更好了,你自己琢磨.

回答3:

//[1]双循环排序
public void sort(int[] num) throws Exception
{
int temp=0;
for(int i=0;i {
for(int j=i+1;j {
if(num[i] {
temp=num[j];
num[j]=num[i];
num[i]=temp;
}
}
}
// 输出
for(int i=0;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 {
if(num[findex] {
temp=num[eindex];
num[eindex]=num[findex];
num[findex]=temp;
}
++findex;
}else
{
--eindex;
findex=0;
}

}
//输出
for(int i=0;i {
System.out.print(num[i]+",");
}
}
把三个数放到数组中,调用函数即可。