回复 楼主 xiha001
试试这个吧,或许可以运行#include"stdio.h"
main()
{
int i,t;
t=1;
i=2;
while(i<=5)
{
t=t*i;
i=i+1;
}
printf("%d\n",t);
getch();
}
2010-03-30 12:07
2010-03-30 12:18
2010-03-30 12:22
2010-03-30 12:23
2010-03-30 12:45
2010-03-30 13:27
2010-03-30 15:42
2010-03-30 15:49
2010-03-30 15:55
2010-03-30 16:38