【渣渣c】图片上是问题,求大神显灵,谢谢。
提交显示编译错误(compilation error)用VC-6运行,试了几组平常的数据,都正确输出,可是提交就说编译错误了,希望高手帮忙看一下。,谢谢。
#include<stdio.h>
#include<math.h> //函数声明
int main()
{
int i,j=0;
unsigned long n,p;
while(scanf("%lu",&n)!=EOF)
{
j=0;
p=n;
do
{
p=p/10;
j++;
}while(p!=0);
for(i=j-1;i>=0;i--)
{
p=n/unsigned long int(pow(10,i)); //读出数字
n=n%unsigned long int(pow(10,i)); //消除已读取数位
printf("%lu ",p);
}
printf("\n");
}
return 0;
}