程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> iostream-c++中getline的問題 求教

iostream-c++中getline的問題 求教

編輯:編程綜合問答
c++中getline的問題 求教

#include
#include
#include
int main()
{
using namespace std;
char charr[20];
string str;

cout << "Length of string in charr befor input: "
     << strlen(charr) << endl;
cout << "Length of string in str befor input: "
     << str.size() << endl;
cout << "Enter a line of text:\n";
cin.getline(charr,20);
cout << "You enter : " << charr << endl;
cout << "Enter another line of text:\n";
getline(cin,str);
cout << "You enter: " << str << endl;
cout << "Length of string in charr after input: "
     << strlen(charr) << endl;
cout << "Length of string in str after input: "
     << str.size() << endl;
return 0;

}

為什麼到了 getline(cin,str);那一行的時候要按下兩次回車?

最佳回答:


復制你的代碼用我的VS2005運行,只要一次回車就出結果了,你用的什麼編譯運行?

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved