標題:
基本輸入與輸出 (二)
[打印本頁]
作者:
tonyh
時間:
2012-8-7 09:23
標題:
基本輸入與輸出 (二)
使用者輸入中文字串
#include<iostream>
using namespace std;
int main()
{
string word;
cout<<"請輸入要顯示的文字: "<<endl;
cin>>word;
cout<<"您輸入的文字是: "<<endl;
cout<<word<<endl;
system("pause");
return 0;
}
複製代碼
作者:
t2364705
時間:
2012-8-7 09:26
#include<iostream>
using namespace std;
int main()
{
string word;
cout<<"請輸入要顯示的文字: ";
cin>>word;
cout<<"您剛輸入的文字是: ";
cout<<word<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉嘉琳
時間:
2012-8-7 09:28
#include<iostream>
using namespace std;
int main()
{
string word;
cout<<"輸入要顯示的名字"<<endl;
cin>>word;
cout<<"您輸入的文字是"<<endl;
cout<<word<<endl;
system("pause");
return 0;
}
複製代碼
作者:
周煒翔
時間:
2012-8-7 09:29
#include<iostream>
using namespace std;
int main()
{
string word;
cout<<"請輸入您要顯示的文字"<<endl;
cin>>word;
cout<<"您輸入的文字是"<<endl;
cout<<word<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃博鴻
時間:
2012-9-17 18:04
#include<iostream>
using namespace std;
int main()
{
string word;
cout<<"請輸入你想顯示的文字: "<<endl;
cin>>word;
cout<<"你輸入的文字是: "<<endl;
cout<<word<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2