標題:
字串處理 (二) - 字串輸入 1
[打印本頁]
作者:
tonyh
時間:
2014-7-12 16:22
標題:
字串處理 (二) - 字串輸入 1
本帖最後由 tonyh 於 2014-7-26 17:45 編輯
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"輸入一字串: ";
getline(cin,str);
cout<<"你剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2014-7-12 16:34
#include <iostream>
#include <cstdlib>
#include <string>
using namespace std;
int main()
{
string str;
cout<<"輸入一字串: ";
getline(cin,str);
cout<<"你剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林宇翔
時間:
2014-7-12 16:34
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string word;
cout<<"輸入一字串: ";
getline(cin,word);
cout<<"先生/女士/活人/死人,你輸入的字串是: "<<word<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2014-7-12 16:36
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"請輸入一字串: ";
getline(cin,str);
cout<<"你輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2014-7-12 16:36
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
string str;
cout<<"輸入一個字串: ";
getline(cin, str);
cout<<"你輸入的是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李允軒
時間:
2014-7-12 16:36
#include <iostream>
#include <cstdlib>
#include <string>
using namespace std;
int main()
{
string a;
cout << "請輸入一個字串:";
getline(cin,a);
cout << "你剛才輸入的字串是:" << a;
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2014-7-12 16:37
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main ()
{
string str;
cout<<"請輸入一字串: ";
getline(cin,str);
cout<<"你剛輸入的字串是: "<<str<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2014-8-7 15:30
#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://seed.istak.org.tw/)
Powered by Discuz! 7.2