返回列表 發帖
  1. #include<iostream>
  2. using namespace std;
  3. int main(){
  4.    string a;
  5.    cout<<"字串:";
  6.    getline(cin,a);
  7.    cout<<"你剛輸入的字串長度為:"<<a.length()<<endl;
  8.    cout<<"你剛輸入的字串長度為:"<<a.size()<<endl;
  9.    
  10.    system("pause");
  11.    return 0;
  12. }
複製代碼

TOP

返回列表