Board logo

標題: 基本輸入與輸出 (二) [打印本頁]

作者: tonyh    時間: 2012-8-7 09:23     標題: 基本輸入與輸出 (二)

使用者輸入中文字串
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     string word;
  6.     cout<<"請輸入要顯示的文字: "<<endl;
  7.     cin>>word;
  8.     cout<<"您輸入的文字是: "<<endl;
  9.     cout<<word<<endl;  
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

作者: t2364705    時間: 2012-8-7 09:26

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     string word;
  6.     cout<<"請輸入要顯示的文字: ";
  7.     cin>>word;
  8.     cout<<"您剛輸入的文字是: ";
  9.     cout<<word<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

作者: 劉嘉琳    時間: 2012-8-7 09:28

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     string word;
  6.     cout<<"輸入要顯示的名字"<<endl;
  7.     cin>>word;
  8.     cout<<"您輸入的文字是"<<endl;
  9.     cout<<word<<endl;
  10.    
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

作者: 周煒翔    時間: 2012-8-7 09:29

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     string word;
  6.     cout<<"請輸入您要顯示的文字"<<endl;
  7.     cin>>word;
  8.     cout<<"您輸入的文字是"<<endl;
  9.     cout<<word<<endl;
  10.    
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

作者: 黃博鴻    時間: 2012-9-17 18:04

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     string word;
  6.     cout<<"請輸入你想顯示的文字: "<<endl;
  7.     cin>>word;
  8.     cout<<"你輸入的文字是: "<<endl;
  9.     cout<<word<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2