将数组中的数逆序存放
#include<stdio.h>int main(){ int n,a[10],i; scanf("%d",&n); for(i=0;i<n;i++) { scanf("%d",&a[i]); } for(i=n-1;i>=0;i--) { printf("%d &a