//在排序好的陣列中增加一個數字,增加後的數字插入到陣列合適的位置
int score[] = {23,54,83,24,56,99,11}; //宣告陣列,不用排列大小
for (int x = 1; x < score.length; x++) //判斷迴圈
{
for (int y = 0 ; y < score.length; y++)
{
if (score[x] < score[y]) //數字從小到大排列
{
int temp = score[x];
score[x] = score[y];
score[y] = temp;
}
}
}
for (int i = 0; i < score.length; i++)
{
System.out.print(score[i] + "\t");
}
}
文章標籤
全站熱搜
留言列表