帮忙解决一下。。。急
#include<stdio.h>#define SIZE 10
void main()
{
int i,*base,*top;
int a[10];
base=a;
top=base;
while(i<=10)
{
scanf("%d",top);
top++;
i++;
}
do
{
printf("%d",*top--);
}while(top!=base);
}
编译没问题。。可是运行的时候就行不通啦为撒啊
2007-12-26 20:55
2007-12-26 21:19
2007-12-26 21:33
2007-12-26 21:41
2007-12-26 21:42
2007-12-26 21:44
2007-12-26 21:46
2007-12-26 23:12

2007-12-27 00:03
2007-12-27 09:03