杭电 hdu 2072

单词数:

此题没有AC,检查了好久也没发现到底是哪里的问题<(�幡洇�)_�q∩�r�q∩�r!

#include<iostream>
#include<sstream>
using namespace std;
int main(){
    string s;
    while(getline(cin,s)){
        if(s[0]=='#')
            break;
          
        int count=0;
        istringstream stream(s);
        string str;
        while(stream>>str){
            if(str!=" ")
                count++;
        }
          
        cout<<count<<endl;
    }
    return 0;
}


你可能感兴趣的:(ACM,HDU,杭电,2072)