Board logo

標題: 字串處理 (三) - 字串輸入 2 [打印本頁]

作者: 鄭繼威    時間: 2023-3-8 03:20     標題: 字串處理 (三) - 字串輸入 2

本帖最後由 鄭繼威 於 2023-3-8 20:32 編輯

學到這裡已經會3種輸入的方法了
string str;
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char str[50];
  7.     cout<<"請輸入一字串(包含空白): ";
  8.     cin.getline(str,50);  //接收50個字元到str中,其中最後一個為’\0’,所以只看到49個字元輸出;
  9.     cout<<"您剛輸入的字串是: "<<str<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

作者: 林劭澧    時間: 2023-3-8 20:32

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char str[50];
  7.     cout<<"請輸入一字串(包含空白): ";
  8.     cin.getline(str,50);  
  9.     cout<<"您剛輸入的字串是: "<<str<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

作者: 黃裕恩    時間: 2023-3-8 20:34

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char str[50];
  7.     cout<<"請輸入一字串(包含空白): ";
  8.     cin.getline(str,50);  
  9.     cout<<"您剛輸入的字串是: "<<str<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

作者: 李彣    時間: 2023-3-8 20:36

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     char str[50];
  7.     cout<<"請輸入一字串(包含空白):";
  8.     cin.getline(str,50);
  9.     cout<<"您剛輸入的字串是:"<<str<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

作者: 林劭杰    時間: 2023-3-8 20:44

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     char str[50];
  7.     cout<<"請輸入一字串(包含空白):";
  8.     cin.getline(str,50);
  9.     cout<<"您剛輸入的字串是:"<<str<<endl;
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼





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