标签:style blog http color os for
1 #include<iostream> 2 #include<string> 3 using namespace std; 4 int main(){ 5 string s; 6 int i,c=0; 7 getline(cin,s); 8 for(i=1;i<s.length()-1;i++) 9 if(s[i]==‘ ‘&&s[i-1]!=‘ ‘) 10 c++; 11 if(s[i]!=‘ ‘) 12 c++; 13 cout<<c<<endl; 14 return 0; 15 }
参考:
编写C++风格程序,输入一行文本,统计文本中出现的空格数、标点符号数和单词数
循环-06. 统计一行文本的单词个数(15),布布扣,bubuko.com
标签:style blog http color os for
原文地址:http://www.cnblogs.com/gnodidux/p/3820602.html