VS-c++控制台清空缓冲区

如题,简略代码如下

   	//清空缓冲区
	void ReCin(){
		char ch;
		while ((ch = getchar()) != '\n' && ch != EOF);
	}

你可能感兴趣的:(#,VS,c++)