Board logo

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

作者: 許婷芳    時間: 2020-5-15 17:34     標題: 字串處理 (三) - 字串輸入 2

本帖最後由 許婷芳 於 2020-5-15 20:53 編輯

cin.getline()屬於iostream流,而getline()屬於string流,是兩個不一樣的函數。
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     char s[20];
  7.     cout<<"請輸入一字串(包含空白): ";
  8.     cin.getline(s,20);
  9.     cout<<"您剛輸入的字串是: "<<s<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
複製代碼

作者: 林祐霆    時間: 2020-5-15 20:24

此帖僅作者可見
作者: 謝以愛    時間: 2020-5-15 20:48

此帖僅作者可見
作者: 洪承廷    時間: 2020-5-15 20:49

此帖僅作者可見
作者: 謝以恩    時間: 2020-5-15 20:49

此帖僅作者可見
作者: 尤爾呈    時間: 2020-5-15 20:49

此帖僅作者可見
作者: 蘇韋誠    時間: 2020-5-15 20:50

此帖僅作者可見
作者: 廖文綺    時間: 2020-5-15 20:51

此帖僅作者可見




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