標題:
字串處理 (七) - 取得字串長度 2
[打印本頁]
作者:
陳品肇
時間:
2019-4-11 14:35
標題:
字串處理 (七) - 取得字串長度 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-4-13 15:57
#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-4-13 15:58
#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-4-13 15:59
#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-4-13 16:00
#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-4-13 16:01
#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-4-13 16:02
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string gg;
cout<<"請輸入一段自篡:";
getting(cin,str);
cout<<"本段自篡長度為"<<str.size()<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
戴唯陞
時間:
2019-4-13 16:26
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一段字串"<<endl;
getline(cin,str);
cout<<"這段字串的字元有"<<str.size()<<"個"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2