返回列表 發帖

IQ_10503-11

定義 a[n] 為一陣列(array),陣列元素的指標為0 至n-1。若要將陣列中a[n-1]的元素移到a[0],程式片段空白處該填入何運算?
int i, temp, n;

for (i=n-1; i>=____; i=i-1) {
temp = a[i];//指派a[i] 值給temp
a[i] = a[i-1];//指派a[i-1]值為a[i]新值
a[i-1] =temp;//原來的a[i]給a[i-1]
}

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表