標題:
字串處理 (二) - 字串輸入 1
[打印本頁]
作者:
鄭繼威
時間:
2023-5-6 12:10
標題:
字串處理 (二) - 字串輸入 1
本帖最後由 鄭繼威 於 2023-5-6 14:24 編輯
[attach]15590[/attach]
getline(cin,str)
接收一個字串,可以接收空格並輸出
ex:可以讀單字、句子
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str1;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str1);
cout<<"您剛輸入的字串是: "<<str1<<endl;
string str2;
cout<<"請輸入一字串(不包含空白): ";
cin>>str2;
cout<<"您剛輸入的字串是: "<<str2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥霖
時間:
2023-5-6 14:56
本帖最後由 陳宥霖 於 2023-5-6 15:00 編輯
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str1;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str1);
cout<<"您剛輸入的字串是: "<<str1<<endl;
string str2;
cout<<"請輸入一字串(不包含空白): ";
cin>>str2;
cout<<"您剛輸入的字串是: "<<str2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳牧謙
時間:
2023-5-6 14:59
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str1;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str1);
cout<<"您剛輸入的字串是: "<<str1<<endl;
string str2;
cout<<"請輸入一字串(不包含空白): ";
cin>>str2;
cout<<"您剛輸入的字串是: "<<str2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳俊頡
時間:
2023-5-6 14:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str1;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str1);
cout<<"您剛輸入的字串是: "<<str1<<endl;
string str2;
cout<<"請輸入一字串(不包含空白): ";
cin>>str2;
cout<<"您剛輸入的字串是: "<<str2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
徐啟祐
時間:
2023-5-6 14:59
本帖最後由 徐啟祐 於 2023-5-6 15:01 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串(需要你的空格:D):";
getline(cin,str);
cout<<"妳剛輸入的字串是:"<<str<<endl;
string str2;
cout<<"請輸入一字串(不需要你的空格):";
cin>>str2;
cout<<"你剛輸入的字串是:"<<str2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳泓亦
時間:
2023-5-6 15:00
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str1;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str1);
cout<<"您剛輸入的字串是: "<<str1<<endl;
string str2;
cout<<"請輸入一字串(不包含空白): ";
cin>>str2;
cout<<"您剛輸入的字串是: "<<str2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林雋喆
時間:
2023-5-6 15:03
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str1;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str1);
cout<<"您剛輸入的字串是: "<<str1<<endl;
string str2;
cout<<"請輸入一字串(不包含空白): ";
cin>>str2;
cout<<"您剛輸入的字串是: "<<str2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
宜儒
時間:
2023-5-13 00:18
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str1;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str1);
cout<<"您剛輸入的字串是: "<<str1<<endl;
string str2;
cout<<"請輸入一字串(不包含空白): ";
cin>>str2;
cout<<"您剛輸入的字串是: "<<str2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
翁川祐
時間:
2023-5-13 09:38
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str1;
cout<<"請輸入一字串(包含空白): ";
getline(cin,str1);
cout<<"您剛輸入的字串是: "<<str1<<endl;
string str2;
cout<<"請輸入一字串(不包含空白): ";
cin>>str2;
cout<<"您剛輸入的字串是: "<<str2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
楊芊琦
時間:
2023-6-1 07:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout << "請輸入字串(含空白):" ;
string i;
getline(cin,i);
cout << "你剛剛輸入的字串是:" << i << endl;
string s;
cout << "請輸入字串(不含空白):";
cin>>s;
cout << "你剛剛輸入的字串是:" << s << endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2