每日一贴,今天的内容关键字为方法清晰
这个路思很简单,逻辑清晰,大家一看就明确了。当然有还有很多方法,欢送大家充补。
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]+" "); } } }
文章结束给大家分享下程序员的一些笑话语录: 手机终究会变成PC,所以ip会比wm更加畅销,但是有一天手机强大到一定程度了就会发现只有wm的支持才能完美享受。就好比树和草,草长得再高也是草,时间到了条件成熟了树就会窜天高了。www.ishuo.cn