#include <iostream>
#include <string>
using namespace std;
int main() {
string str;
int age;
cout << "Please enter age: ";
cin>>age;
cout << "Please enter full name: ";
getline (cin,str);
cout << "Thank you, " << str << ".\n";
}
爲什麼函數getline()在我使用uperator >>輸入整數時不起作用? int輸入有什麼更好的用法?cin >>不能用getline()
定義「不工作」。發生了什麼,你不喜歡? –