標題:
取得字串長度 (二)
[打印本頁]
作者:
tonyh
時間:
2012-5-26 16:51
標題:
取得字串長度 (二)
本帖最後由 tonyh 於 2012-5-26 17:07 編輯
運用string變數, 與size函數, 設計一小程式, 讓電腦能複送使用者輸入的字串, 並計算該字串的長度(多少字元).
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
string n;
cout<<"請輸入一任意字串: ";
getline(cin,n);
cout<<"您剛輸入的字串為: "<<n<<endl;
a=n.size();
cout<<"該字串的長度為"<<a<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
t3742238
時間:
2012-5-26 16:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
string n;
cout<<"請輸入任意字串(100字內): ";
getline(cin,n);
cout<<"您剛剛輸入的字串是:"<<n<<endl;
a=n.size();
cout<<"該字串的長度為"<<a<<"字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉漢文
時間:
2012-5-26 16:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
string n;
cout<<"請輸入任意字串(100字內): ";
getline(cin.n)
cout<<"你剛輸入的字串為: "<<n<<endl;
a=size();
cout<<"該字串的長度為"<<a<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
t2364705
時間:
2012-5-26 16:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
string n;
cout<<"請輸入任意字串(100字內): ";
getline(cin,n);
cout<<"您剛輸入的字串為: "<<n<<endl;
a=n.size();
cout<<"該字串的長度為"<<a<<"個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
尤泓鈞
時間:
2012-5-26 16:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
string n;
cout<<"請輸入任意字串(100字內): ";
getline(cin,n);
cout<<"您剛剛輸入的字串是:"<<n<<endl;
a=n.size();
cout<<"該字串的長度為"<<a<<"字元"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2