思路:用数学的除法和取模运算也可以,此处用的是先转换成字符串,再计算字符的编码值
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
int main()
{
int n, result;
cin >> n;
stringstream stream; //用to_string 报错,也没办法了
stream << n;
string str = stream.str();
for(int i=0; i<str.length(); i++)
result += (str[i] - '0');
cout<<result;
return 0;
}