標題:
字串處理 (二) - 字串輸入 1
[打印本頁]
作者:
鄭繼威
時間:
2023-3-8 03:20
標題:
字串處理 (二) - 字串輸入 1
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李彣
時間:
2023-3-8 19:38
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白):";
getline(cin,str);
cout<<"您剛輸入的字串是:"<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃裕恩
時間:
2023-3-8 19:39
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林劭杰
時間:
2023-3-8 19:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
char str[5000];
cout<<"請輸入一字串(包含空白): ";
cin.getline(str,5000);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2