標題:
字串處理 (二) - 字串輸入 1
[打印本頁]
作者:
tonyh
時間:
2021-6-19 20:38
標題:
字串處理 (二) - 字串輸入 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;
}
複製代碼
作者:
林鼎傑
時間:
2021-6-19 20:48
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃子倢
時間:
2021-6-19 20:48
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白)"<<endl;
getline(cin,str);
cout<<"你剛剛輸入的是:"<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
余柏緯
時間:
2021-6-19 20:49
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白):";
getline(cin,str);
cout<<"您剛輸入的字串是:"<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王宇崴
時間:
2021-6-19 20:50
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"剛輸入的是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱奕祐
時間:
2021-6-19 20:51
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許洧熏
時間:
2021-6-19 20:51
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
俞成章
時間:
2021-6-19 20:51
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"輸入字串: ";
getline(cin,str);
cout<<"輸入的字串: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王秉鈞
時間:
2021-6-19 20:53
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(含空白)";
getline(cin,str);
cout<<"寧剛輸入的字串是"<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
呂尚霖
時間:
2021-6-19 20:53
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str);
cout<<"您剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2