«istream» 태그된 질문

3
형식화 된 추출 후 std :: getline ()이 입력을 건너 뛰는 이유는 무엇입니까?
사용자에게 이름과 상태를 묻는 다음 코드가 있습니다. #include <iostream> #include <string> int main() { std::string name; std::string state; if (std::cin >> name && std::getline(std::cin, state)) { std::cout << "Your name is " << name << " and you live in " << state; } } 내가 찾은 것은 이름이 성공적으로 …
105 c++  input  iostream  istream  c++-faq 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.