- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int b, n=0;
- string a;
- cout<<"請輸入任一句子(將判斷句子中有幾個單字): ";
- getline(cin,a);
- b=a.size();
- for(int i=0; i<b; i++)
- {
- if((a[i]>65 && a[i]<=90) || (a[i]>=97 && a[i]<=122))
- {
- n++;
- if((a[i+1]>65 && a[i+1]<=90) || (a[i+1]>=97 && a[i+1]<=122))
- {
- n--;
- }
- }
- }
- cout<<"您輸入的句子中, 包含了"<<n<<"個單字"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |