循環-06. 統計一行文本的單詞個數


 1 /**
 2  * Main.c
 3  * 循環-06. 統計一行文本的單詞個數
 4  *  Created on: 2014年7月25日
 5  *      Author: Boomkeeper
 6  ******測試通過************
 7  */
 8 
 9 #include <stdio.h>
10 
11 int main(){
12     char input,b=' ';
13     int count=0;
14 
15     while((input=getchar())!='\n'){
16 //        printf("%c\n",input);
17         if(input!=' ' && b==' ')
18             count++;
19         b=input;
20     }
21 
22     printf("%i\n",count);
23 
24     return 0;
25 }

參考來源:

http://tieba.baidu.com/p/3078959002

題目鏈接:

http://pat.zju.edu.cn/contests/basic-programming/%E5%BE%AA%E7%8E%AF-06


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM