求大神指点
#include<stdio.h>void main()
{
int a,b,count=1,i,jishu=0,oushu=0;
printf("please input the number\n");
scanf("%d",&a);
b=a;
while(a/10)
count++;
for(i=0;i<count;i+=2)
{
jishu+=a%10;
a=a/100;
}
a=b;
for(i=1;i<count;i+=2)
{
oushu+=a%10;
a=a/100;
}
printf("jishu=%d,oushu=%d",jishu,oushu);
}
求大神指点 为什么通过了编译 就是输不出来~~~~~ 新手号 木有多少分给啊