返回列表 發帖

字串處理 (六) - 取得字串長度 1

本帖最後由 tonyh 於 2014-7-26 17:47 編輯

設計一程式, 能計算使用者輸入的字串長度(多少字元)

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int sum=0;
  7.     char str[100];
  8.     cout<<"請輸入一任意字串: ";
  9.     cin.getline(str,100);
  10.     for(int i=0; str[i]!=NULL; i++)
  11.         sum++;
  12.     cout<<"本字串的長度為"<<sum<<"個字元!"<<endl;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

本帖最後由 周雍程 於 2014-7-31 15:29 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     int sum=0;
  7.     char str[100];
  8.     cout<<"請輸入一英文字串: "<<endl;
  9.     cin.getline(str,100);   
  10.     for(int i=0; str[i]!=NULL; i++)
  11.             sum++;
  12.     cout<<"字串長度是"<<sum<<"個字元所組成!"<<endl;
  13.     system("pause");     
  14.     return 0;   
  15. }   
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int sum=0;
  7.     char str[100];
  8.     cout<<"輸入任意英文字串:";
  9.     cin.getline(str,100);
  10.     for(int i=0; str[i]!=NULL; i++)
  11.         sum++;
  12.     cout<<"字串長度是"<<sum<<"個字元!"<<endl;
  13.     system("pause");
  14.     return 0;
  15.     }   
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.     char str[100];
  7.     int ans = 0;
  8.     cout <<"請輸入一任意字串:" ;
  9.     cin.getline(str,100);
  10.     for(int i = 0;str[i]!=NULL;i++)
  11.         ans++;
  12.     cout <<"本字串的長度為"<<ans<<"字元"<< endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char str[100];
  7.     int sum = 0;
  8.     cout << "請輸入任一個字串";
  9.     cin.getline(str,100);
  10.     for(int i = 0; str[i] != NULL; i++)
  11.         sum++;
  12.     cout << "你輸入的字串有" << sum << "個字" << endl;        
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int sum=0;
  7.           char str[100];
  8.           cout<<"請輸入一任意字串:";
  9.           cin.getline(str,100);
  10.           for(int i=0; str[i]!=NULL;i++)
  11.           {
  12.                   sum++;
  13.                  
  14.     }
  15.     cout<<"本字串的長度為"<<sum<<"個字元!"<<endl;
  16.     system("pause");     
  17.     return 0;   
  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int sum=0;
  7.     char str[100];
  8.     cout<<"輸入一字串: ";
  9.     cin.getline(str,100);
  10.     for(int i=0; str[i]!=NULL; i++)
  11.         sum++;
  12.     cout<<"本字串的長度為"<<sum<<"個字元!"<<endl;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼

TOP

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int sum=0;
  7.     char str[100];
  8.     cout<<"請輸入一任意字串: ";
  9.     cin.getline(str,100);
  10.     for(int i=0; str[i]!=NULL; i++)
  11.         sum++;
  12.     cout<<"本字串的長度為"<<sum<<"個字元!"<<endl;
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

TOP

返回列表