java三个数从小到大排序,不能用冒泡排序跟数组
public static void main(String[] args) {
//比较三个数大小?从小到大排序。不能使用冒泡排序跟数组
int a=3;
int b=1;
int c=2;
if (a>b){
int temp=a;//设置临时变量
a=b;
b=temp;
}
if (b>c){
int temp=b;
b=c;
c=temp;
}
if (a>c){
int temp=a;
a=c;
c=temp;
}
System.out.println(a+" "+b+" "+c);
}
}