解题思路:用字符串一个一个取出来
注意事项:特别注意就是别想复杂了,一般数学取数字问题多多考虑字符串
参考代码:
#include <iostream>
#include <stdio.h>
using namespace std;
int main( ) {
char num[100];
int i, result = 0;
while (~(scanf("%s", &num))) {
for (i = 0, result = 0; i < strlen(num); i++) {
result += num[i] - '0';
}
cout << result << endl;
}
return 0;
}
0.0分
0 人评分
C二级辅导-阶乘数列 (C语言代码)浏览:642 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:722 |
矩阵乘法 (C++代码)浏览:1662 |
A+B for Input-Output Practice (V) (C语言代码)浏览:640 |
简单的for循环浏览:1498 |
wu-淘淘的名单 (C++代码)浏览:1532 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:645 |
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:662 |
神奇的fans (C语言代码)浏览:1125 |
1005答案错误为什么浏览:1988 |