解题思路:没有转换成字符串,要注意的是范围不能用int,要用long long int,并且用 "%lld"
注意事项:
参考代码:
#include<stdio.h>
#include<string.h>
int main()
{
long long int n,t;
int s;
while ((scanf("%lld",&n))!=EOF)
{
s= 0;
while (n)
{
t = n%10;
n/=10;
s+=t;
}
printf("%d\n",s);
}
return 0;
}
0.0分
0 人评分