本帖最後由 tonyh 於 2014-3-1 14:26 編輯
設計一程式, 讓使用者輸入任一句子, 甚至是一篇文章, 電腦判斷該句子或文章中有幾個單字.
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int n=0;
- char str[100];
- cout<<"請輸入任一句子(將判斷句子中有幾個單字): "<<endl;
- cin.getline(str,100);
- for(int i=0; str[i]!=NULL; i++)
- {
- if((int(str[i])>=65 && int(str[i])<=90)||(int(str[i])>=97 && int(str[i])<=122))
- {
- n++;
- if((int(str[i+1])>=65 && int(str[i+1])<=90)||(int(str[i+1])>=97 && int(str[i+1])<=122))
- n--;
- }
- }
- cout<<endl<<"您輸入的句子中, 包含了"<<n<<"個單字"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |