这个思路很简单,逻辑清晰,大家一看就明白了。当然有还有很多方法,欢迎大家补充。
import java.util.*;
class Compare
{
public static void main(String[] args)
{
Scanner sc=new Scanner(System.in);
int x=sc.nextInt();
int y=sc.nextInt();
int z=sc.nextInt();
if(x>y)
{
if(y>z)
System.out.println(x+","+y+","+z);
else
{
if(x>z)
System.out.println(x+","+z+","+y);
else
System.out.println(z+","+y+","+x);
}
}
else
{
if(y<z)
System.out.println(z+","+y+","+x);
else
{
if(x<z)
System.out.println(y+","+z+","+x);
else
System.out.println(y+","+x+","+z);
}
}
}
}
另一种更好的方法
import java.util.*;
public class Compare
{
public static void main(String[] args)
{
Scanner sc=new Scanner(System.in);
int[] a=new int[3];
a[0]=sc.nextInt();
a[1]=sc.nextInt();
a[2]=sc.nextInt();
for(int i=0;i<a.length;i++){
for(int j=i+1;j<a.length;j++){
if(a[i]>a[j]){
int temp=a[i];
a[i]=a[j];
a[j]=temp;
}
}
}
for(int i=a.length-1;i>=0;i--){
System.out.print(a[i]+" ");
}
}
}