입력을 읽은 후 cin.clear () 및 cin.ignore ()를 호출하는 이유는 무엇입니까?
이 코드를 사용하는 데 사용 된 Google Code University의 C ++ 자습서 : // Description: Illustrate the use of cin to get input // and how to recover from errors. #include <iostream> using namespace std; int main() { int input_var = 0; // Enter the do while loop and stay …