標題:
字串處理 (七) - 取得字串長度 2
[打印本頁]
作者:
陳品肇
時間:
2019-6-29 12:19
標題:
字串處理 (七) - 取得字串長度 2
運用string變數, 與size()函式, 設計一程式, 能計算使用者輸入的字串長度(多少字元)
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意字串: ";
getline(cin,str);
cout<<"本字串的長度為"<<str.size()<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
田宇任
時間:
2019-6-29 13:41
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string king;
cout<<"任意輸入字串"<<endl;
getline(cin,king);
cout<<"本字串長度為"<<king.size()<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪寬瀧
時間:
2019-6-29 13:42
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意字串: "<<endl;
getline(cin,str);
cout<<"本字串der長度為 "<<str.size()<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曲書辰
時間:
2019-6-29 13:42
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string sen;
cout<<"請輸入一段字串:";
getline(cin,sen);
cout<< sen<<endl;
cout<<"本字串為:"<<sen.size()<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
湯郡一
時間:
2019-6-29 13:44
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意字串: ";
getline(cin,str);
cout<<"本字串的長度為"<<str.size()<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2019-6-29 13:46
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意字串:";
getline(cin,str);
cout<<"本字串的長度為"<<str.size()<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳孟修
時間:
2019-7-6 12:35
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意字串: ";
getline(cin,str);
cout<<"本字串的長度為"<<str.size()<<"個字元."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳孟書
時間:
2019-7-6 12:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str;
cout<<"請輸入一任意字串:";
getline(cin,str);
cout<<"本子串長度為"<<str.size()<<"字元"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2