C 練習(xí)實(shí)例40
題目:將一個(gè)數(shù)組逆序輸出。
程序分析:用第一個(gè)與最后一個(gè)交換。
程序源代碼:
// Created by o2fo.com on 15/11/9. // Copyright © 2015年 W3Cschool教程. All rights reserved. // #include<stdio.h> #define N 10 int main() { int a[N]={0,1,2,3,4,5,6,7,8,9}; int i,t; printf("原始數(shù)組是:\n"); for(i=0;i<N;i++) printf("%d ",a[i]); for(i=0;i<N/2;i++) { t=a[i]; a[i]=a[N-1-i]; a[N-1-i]=t; } printf("\n排序后的數(shù)組:\n"); for(i=0;i<N;i++) printf("%d ",a[i]); printf("\n"); return 0; }
以上實(shí)例輸出結(jié)果為:
原始數(shù)組是: 0 1 2 3 4 5 6 7 8 9 排序后的數(shù)組: 9 8 7 6 5 4 3 2 1 0
更多建議: