c++可使用「字串」的技巧
getline(cin,str)能夠讀入字串(包含空白,但沒有含enter)。
建議可以記一下上述的這個語法:)
#include<iostream>
#include<string>
using namespace std;
int main() {
string str; //設一個字串變數,名為str
while (getline(cin, str)) {
cout << "hello, " << str << endl;
}
return 0;
}