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) 阅读全文
posted @ 2021-07-08 15:25 刘邝杰 阅读(261) 评论(0) 推荐(0) 编辑