Board logo

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

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

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

作者: 李彣    時間: 2023-3-8 19:38

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

作者: 黃裕恩    時間: 2023-3-8 19:39

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

作者: 林劭杰    時間: 2023-3-8 19:45

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





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