https://yukicoder.me/problems/no/656
解法
https://yukicoder.me/submissions/240560
順番にスコアを計算していく。
foreachを使うと若干短く書ける。
あと、文字を数に変換する時は-'0'するのがオススメ。
string S; //--------------------------------------------------------------------------------------------------- void _main() { cin >> S; int ans = 0; fore(c, S) { if (c == '0') ans += 10; else ans += c - '0'; } cout << ans << endl; }