标签:style class blog code color for
1 int[] nums={1,3,5,7,9,2,4,6,8};//定义数组 2 int temp=0;// 定义临时变量 3 for(int i=0;i<nums.Length-1;i++)//外层比较N-1次 4 { 5 for(int j=0;j<nums.Length-1-j;j++)//里层比较N-1-i次 6 { 7 if(nums[j]>nums[j+1])//如果前面一个数字大于后面一个数字,就交换大小 8 { 9 temp=nums[j]; 10 nums[j]=nums[j+1]; 11 nums[j+1]=temp; 12 } 13 } 14 }
标签:style class blog code color for
原文地址:http://www.cnblogs.com/milovetingting/p/3810489.html