单选题 难度 3
字符参与加法时用的是编码值。
下面代码的输出是( )。 string s = "abc"; int t = 0; for (char ch : s) t += ch; cout << t << endl;