为啥错?

13983427298 2024-07-04 16:21:19 12

#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { string s; int ans = 0; getline(cin, s); for (int i = 1; i < s.size(); i++) { if (s[i] != ' ') ans++; } cout << ans; return 0; }

{{ vote && vote.total.up }}

共 3 条回复

13983427298

谢谢

root 站长

英文字母、数字、空格和其他字符的个数的统计值。 你统计了不是空格的字符,另外,要注意字符串遍历的for循环是从0开始的,

13983427298

请 @root 帮忙