Java中输入三个数 从小到大打印出来

package h.classroompratise;
//作者:陈天祥
//时间:2016.10.8
//功能:输入三个数 从小到大打印出来
import java.util.Scanner;


public class Paixu {


public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sca=new Scanner(System.in);
System.out.println("请输入三个数:");
int x=sca.nextInt();
int y=sca.nextInt();
int z=sca.nextInt();
if(x>y)//判断语句 把最小值存放到X里面
{
int t=x;
   x=y;
   y=t;
}
if(x>z)//判断语句,把最小值存放到X里面
{
int h=x;
   x=z;
   z=h;
}
if(y>z)//判断语句,把第二小的值放在Y里,自然Z就是存放最大值了
{
int g=y;
   y=z;
   z=g;
}
System.out.print(x+" "+y+" "+z);






}

你可能感兴趣的:(JavaSE)