单词数:

此题没有AC,检查了好久也没发现到底是哪里的问题<(︶︿︶)_╭∩╮╭∩╮!

#include
#include
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<