返回列表 發帖

字串處理 (七) - 取得字串長度 2

同上題, 運用 string 變數搭配 size() 函式或 length() 函式, 回傳使用者輸入的字串長度(有幾個字元)

  1. #include <bits/stdC++.h>//萬用標頭檔
  2. using namespace std;

  3. int main()
  4. {
  5.     //ios::sync_with_stdio(0); //cin.tie(0); //加速輸入與輸出不用
  6.     string str;
  7.     cout<<"請輸入一任意英文字串:";
  8.     getline(cin,str);
  9.     cout<<"本字串的長度為"<<str.length()<<"個字元"<<endl;

  10.     return 0;
  11. }
複製代碼

返回列表