//n是数组长度 void disp (int a[],int n) { if(n<=0) { printf ("\n"); }else{ disp(a,n-1); printf ("%i ",a[n-1]); } }