Board logo

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

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

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

[attach]15590[/attach]
getline(cin,str)
接收一個字串,可以接收空格並輸出
ex:可以讀單字、句子
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str1;
  8.     cout<<"請輸入一字串(包含空白): ";
  9.     getline(cin,str1);
  10.     cout<<"您剛輸入的字串是: "<<str1<<endl;
  11.     string str2;
  12.     cout<<"請輸入一字串(不包含空白): ";
  13.     cin>>str2;
  14.     cout<<"您剛輸入的字串是: "<<str2<<endl;
  15.    
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

作者: 陳宥霖    時間: 2023-5-6 14:56

本帖最後由 陳宥霖 於 2023-5-6 15:00 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str1;
  8.     cout<<"請輸入一字串(包含空白): ";
  9.     getline(cin,str1);
  10.     cout<<"您剛輸入的字串是: "<<str1<<endl;
  11.     string str2;
  12.     cout<<"請輸入一字串(不包含空白): ";
  13.     cin>>str2;
  14.     cout<<"您剛輸入的字串是: "<<str2<<endl;
  15.    
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

作者: 陳牧謙    時間: 2023-5-6 14:59

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

作者: 吳俊頡    時間: 2023-5-6 14:59

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

作者: 徐啟祐    時間: 2023-5-6 14:59

本帖最後由 徐啟祐 於 2023-5-6 15:01 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string str;
  7.     cout<<"請輸入一字串(需要你的空格:D):";
  8.     getline(cin,str);
  9.     cout<<"妳剛輸入的字串是:"<<str<<endl;
  10.     string str2;
  11.     cout<<"請輸入一字串(不需要你的空格):";
  12.     cin>>str2;
  13.     cout<<"你剛輸入的字串是:"<<str2<<endl;
  14.     system("pause");
  15.     return 0;      
  16. }
複製代碼

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

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

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

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

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

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

作者: 翁川祐    時間: 2023-5-13 09:38

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

作者: 楊芊琦    時間: 2023-6-1 07:39

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main()
  5. {
  6.         cout << "請輸入字串(含空白):" ;
  7.         string i;
  8.   getline(cin,i);
  9.           cout << "你剛剛輸入的字串是:" << i << endl;
  10.         string s;
  11.         cout << "請輸入字串(不含空白):";
  12.   cin>>s;
  13.         cout << "你剛剛輸入的字串是:" << s << endl;
  14.         system("pause");
  15.         return 0;
  16. }
複製代碼





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