標題:
字串處理 (七) - 取得字串長度 2
[打印本頁]
作者:
tonyh
時間:
2021-6-26 19:28
標題:
字串處理 (七) - 取得字串長度 2
本帖最後由 tonyh 於 2021-6-26 20:14 編輯
同上題, 運用 string 變數搭配 size() 函式或 length() 函式, 回傳使用者輸入的字串長度(有幾個字元)
#include<iostream>
#include<cstdlib>
#include<cstring>
using namespace std;
int main()
{
int sum=0;
string str;
cout<<"請輸入一字串: ";
getline(cin, str);
cout<<"本字串的長度為"<<str.length()<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
余柏緯
時間:
2021-6-26 20:14
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int sum=0;
string a;
cout<<"輸入一字串: ";
getline(cin,a);
cout<<"本字串的長度為"<<a.length()<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林鼎傑
時間:
2021-6-26 20:14
#include<iostream>
#include<cstdlib>
#include<cstring>
using namespace std;
int main()
{
int sum=0;
string str;
cout<<"請輸入一字串: ";
getline(cin, str);
cout<<"本字串的長度為"<<str.length()<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王宇崴
時間:
2021-6-26 20:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
string str;
cout<<"輸入一字串: ";
getline(cin, str);
cout<<"本字串的長度為"<<str.length()<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱奕祐
時間:
2021-6-26 20:15
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int sum=0;
string a;
cout<<"輸入一字串: ";
getline(cin,a);
cout<<"本字串的長度為"<<a.length()<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
呂尚霖
時間:
2021-6-26 20:16
#include<iostream>
#include<cstdlib>
#include<cstring>
using namespace std;
int main()
{
int sum=0;
string str;
cout<<"請輸入一字串: ";
getline(cin, str);
cout<<"本字串的長度為"<<str.length()<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃子倢
時間:
2021-6-26 20:16
#include<iostream>
#include<cstdlib>
#include<cstring>
using namespace std;
int main()
{
int sum=0;
string w;
cout<<"請輸入一字串: ";
getline(cin, w);
cout<<"本字串的長度為"<<w.length()<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許洧熏
時間:
2021-6-26 20:18
#include<iostream>
#include<cstdlib>
#include<cstring>
using namespace std;
int main()
{
int x=0;
string str;
cout<<"請輸入一字串: ";
getline(cin, str);
cout<<"本字串的長度為"<<str.length()<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王秉鈞
時間:
2021-6-26 20:20
#include<iostream>
#include<cstdlib>
#include<cstring>
using namespace std;
int main()
{
int sum=0;
string str;
cout<<"請輸入一字串";
getline(cin,str);
cout<<"本字串的長度為"<<str.length()<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
俞成章
時間:
2021-6-26 20:24
#include<iostream>
#include<cstdlib>
#include<cstring>
using namespace std;
int main()
{
int sum=0;
string str;
cout<<"請輸入一字串: ";
getline(cin, str);
cout<<"本字串的長度為"<<str.length()<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2