#include
創(chuàng)新互聯(lián)公司專注于羅甸網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供羅甸營(yíng)銷型網(wǎng)站建設(shè),羅甸網(wǎng)站制作、羅甸網(wǎng)頁設(shè)計(jì)、羅甸網(wǎng)站官網(wǎng)定制、成都微信小程序服務(wù),打造羅甸網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供羅甸網(wǎng)站排名全網(wǎng)營(yíng)銷落地服務(wù)。
void fun(int a[], int n){
int i,j,temp;
for(i = 0,j = n-1; i < j; i ++,j --){// 交換時(shí) i< j即可完成
temp = a[i];
a[i] = a[j];//
a[j] = temp;
}
for(j = 0;j < n; j++){
printf("%d",a[j]);
}
}
int main(void){
int a[] = {1,2,3,4,5,6,7,8,9};
fun(a,9);
return 0;
}