To prawdopodobnie bardzo prosty problem, ale wybacz mi, że jestem nowy. Oto mój kod:getline nie pyta o wejście?
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
int main()
{
string name;
int i;
string mystr;
float price = 0;
cout << "Hello World!" << endl;
cout << "What is your name? ";
cin >> name;
cout << "Hello " << name << endl;
cout << "How old are you? ";
cin >> i;
cout << "Wow " << i << endl;
cout << "How much is that jacket? ";
getline (cin,mystr);
stringstream(mystr) >> price;
cout << price << endl;
system("pause");
return 0;
}
Problemem jest to, że pytany how much is that jacket?
getline nie prosi użytkownika o wejściu i po prostu wejść początkową wartość „0”. Dlaczego to?
Uwaga: Zostało to zadane wiele razy. Oto kilka http://stackoverflow.com/questions/3731529/program-is-skipping-over-getline- without-taking-user-input http://stackoverflow.com/questions/1744665/need-help- with-getline http://stackoverflow.com/questions/4876959/ignore-spaces-using-getline-in-c – cpx