標題:
字串處理 (七) - 取得字串長度 2
[打印本頁]
作者:
tonyh
時間:
2014-7-26 16:51
標題:
字串處理 (七) - 取得字串長度 2
本帖最後由 tonyh 於 2014-7-31 14:48 編輯
運用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;
}
複製代碼
作者:
林宇翔
時間:
2014-7-26 16:56
#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;
}
複製代碼
作者:
李允軒
時間:
2014-7-26 16:56
#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;
}
複製代碼
作者:
張峻瑋
時間:
2014-7-26 16: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;
}
複製代碼
作者:
張郁庭
時間:
2014-7-26 16:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str;
cout<<"輸入一字串: ";
getline(cin,str);
cout<<"本字串的長度為"<<str.size()<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2014-7-26 16: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;
}
複製代碼
作者:
周雍程
時間:
2014-7-31 15:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str;
cout<<"請輸入一英文字串: "<<endl;
getline(cin,str);
cout<<"字串長度是"<<str.size()<<"個字元!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2014-7-31 15:42
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2