统计单词 题解:可过,判断条件很简单
#include <iostream>
using namespace std;
#include<string>
int main() {
string s;
while(getline(cin,s)){
int i=0;
while(s[i]!='.'){
int cnt=0;
if(s[i]==' '){
i++;
continue;
}
while (i < s.length() && s[i] != ' ' && s[i] != '.') { // 统计单词长度
cnt++;
i++;
}
&...
登录后发布评论
暂无评论,来抢沙发