標題:
字串處理 (七) - 取得字串長度 2
[打印本頁]
作者:
方浩葦
時間:
2024-10-5 13:43
標題:
字串處理 (七) - 取得字串長度 2
同上題, 運用 string 變數搭配 size() 函式或 length() 函式, 回傳使用者輸入的字串長度(有幾個字元)
#include <bits/stdC++.h>//萬用標頭檔
using namespace std;
int main()
{
//ios::sync_with_stdio(0); //cin.tie(0); //加速輸入與輸出不用
string str;
cout<<"請輸入一任意英文字串:";
getline(cin,str);
cout<<"本字串的長度為"<<str.length()<<"個字元"<<endl;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2