Board logo

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

作者: 鄭繼威    時間: 2023-5-6 12:10     標題: 字串處理 (三) - 字串輸入 2

本帖最後由 鄭繼威 於 2023-5-6 15:25 編輯

學到這裡已經會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-5-6 15:08

  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-5-6 15:15

  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.         system("pause");
  13.         return 0;
  14. }
複製代碼

作者: 陳牧謙    時間: 2023-5-6 15:16

  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-5-6 15:17

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

作者: 林雋喆    時間: 2023-5-6 15:17

  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;   }
複製代碼

作者: 陳泓亦    時間: 2023-5-6 15:18

  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-5-6 15:18

6
作者: 宜儒    時間: 2023-5-13 00:28

  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);  //放入的str須為字元陣列的型態  cin.getline(name,取幾個,遇到什麼字元時斷句)
  9.         //接收50個字元到str中,其中最後一個為’\0’,所以只看到49個字元輸出;
  10.     cout<<"您剛輸入的字串是: "<<str<<endl;
  11.     system("pause");
  12.     return 0;   
  13. }
複製代碼

作者: 翁川祐    時間: 2023-5-13 10:57

  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,'g');

  9.     cout<<"您剛輸入的字串是: "<<str<<endl;

  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼





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