已经编译通过~#include<stdio.h>void main(){ int i,temp; int a[3]; for(i=0;i<3;i++) { scanf("%d",&a[i]); } for(i=0;i<2;i++) { temp=a[i]; a[i]=a[2-i]; a[2-i]=temp; } for(i=0;i<3;i++) { printf("%d",a[i]); }}
#include <iostream>#include <stdio.h>void main(){ int x; int ch[3]; for (x=0;x<3;x++) { scanf("%d",&ch[x]); } do { x--; printf("%d ",ch[x]); } while (x);}//供参考