第11行:s[i]+1改为s[i+1]
by wangxx2012 @ 2024-07-17 16:12:11
# **康一下** 这个AC
```cpp
#include<bits/stdc++.h>//万能头
using namespace std;
string etr;
int ans;
int main()//上面不多说
{
getline(cin,etr);//读取一整行
for(int i=0;i<=etr.length();i++)//循环判断每一个字符的Ascll是否在32与127间,是则ans++
{
if(etr[i]>32&&etr[i]<=126) ans++;
}
cout<<ans;//输出
return 0;//好习惯
}
```
by stepz00zy @ 2024-07-17 19:04:54