解题思路:注意整形 要unsignet
注意事项:
参考代码:
#include<stdio.h>
int main(){
int m;
unsigned int n;
while(scanf("%d",&n)!=EOF){
if(n<0){
continue;
}
m=0;
while(n!=0){
m+=n%10;
n/=10;
}
printf("%d\n",m);
}
return 0;
}
0.0分
0 人评分
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:1305 |
C语言训练-计算1977!* (C语言代码)浏览:940 |
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:1059 |
【出圈】 (C语言代码)浏览:824 |
2005年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:637 |
Hello, world! (C++代码)浏览:1778 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)from DQM浏览:773 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:721 |
C二级辅导-统计字符 (C语言代码)浏览:514 |
剪刀石头布 (C语言代码)浏览:1519 |