#6948: WA=_= WHY??????


yan88663319 (L)

學校 : 不指定學校
編號 : 26755
來源 : [140.112.25.11]
最後登入時間 :
2021-08-23 10:30:11
a011. 00494 - Kindergarten Counting Game -- UVa494 | From: [114.36.117.141] | 發表日期 : 2012-08-28 15:06

#include<iostream>
#include<cctype>
using namespace std;

int main()
{
    int lenth=50;
    char s[lenth];
    while( cin.getline(s,lenth) )
    {
        int num = 0;
        bool word = 0;
        for( int i = 0 ;s[i]!='\0'; i++ )
        {
            if( isspace(s[i]))
            {
               num ++;
            }
              
        }
        cout << (num+1) << endl;
    }
    return 0;
}
 
用dev測試都OK
但為啥送上去之後她老是說我輸出0行? 
 
ZeroJudge Forum