#3188: 怎麼會這樣


ypps920080 (Jason)

學校 : 臺北市私立薇閣高級中學
編號 : 10063
來源 : [61.220.37.49]
最後登入時間 :
2016-03-25 22:27:07
a011. 00494 - Kindergarten Counting Game -- UVa494 | From: [203.67.37.207] | 發表日期 : 2010-01-03 11:34

#include <stdio.h>     
#include <stdlib.h>     
#include <string.h>     
    
int main()     
{     
    char x[999999];     
    int i,temp;     
         
    while (gets(x)){     
          for (i=0,temp=1;i<strlen(x);i++){     
              if (x[i]==' ')     
                 temp++;     
          }     
          printf("%d\n",temp);     
    }     
       
        
  return 0;     

一直少一!! 
ZeroJudge Forum