標題:
字串處理 (二) - 字串輸入 1
[打印本頁]
作者:
陳品肇
時間:
2019-6-15 12:11
標題:
字串處理 (二) - 字串輸入 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;
}
複製代碼
作者:
田宇任
時間:
2019-6-15 14:03
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string bang;
cout<<"輸入字串;";
getline(cin ,bang);
cout<<"你輸入的是:"<<bang<<endl;
system("pause");
return 0;
}
複製代碼
作者:
湯郡一
時間:
2019-6-15 14:03
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"輸入一字串: ";
getline(cin,str);
cout<<"你剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曲書辰
時間:
2019-6-15 14:03
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string a;
getline(cin, a);
cout<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳孟修
時間:
2019-6-15 14:04
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string s;
cout<<"請輸入隨便一字串:";
getline(cin,s);
cout<<"您剛才輸入的字串是:"<<s<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2019-6-15 14:04
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string s;
cout<<"輸入一字串:";
getline(string,s);
cout<<"你剛輸入的字串是"<<s<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪寬瀧
時間:
2019-6-15 14:05
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string jeb;
cout<<"輸入一字串"<<endl;
getline(cin,jeb);
cout<<"您剛輸入der字串是"<<jeb<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳孟書
時間:
2019-6-15 14:05
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string s;
cout<<"輸入一字串:";
getline(cin,s);
cout<<"你剛輸入的字串是:"<<s<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2