标签:tps 描述 static 除了 div 由来 i++ class tin
public class Sorting { public static void main(String[] args) { int[] a = { 3, 2, 5, 4, 6 }; for (int i = 0; i < a.length - 1; i++) { //循环n-1次,每次将剩余数组的最大元素冒泡至剩余数组的最后,循环只进行n-1次,剩余的一个元素自然就会找到自己恰当的位置 for (int j = 0; j < a.length - i - 1; j++) { //每次只要比较除了排好序之外的剩余遇到元素即可 if(a[j]>a[j+1]) { int temp = 0; temp = a[j]; a[j] = a[j+1]; a[j+1] = temp; } } } for(int k = 0;k<a.length;k++) { System.out.print(a[k]+" "); } } }
标签:tps 描述 static 除了 div 由来 i++ class tin
原文地址:https://www.cnblogs.com/Guhongying/p/10357300.html