getch()和_getch()

在VS2005的程序中用

#include <iostream.h>

.....

getch();

提示错误。

在网上找了一下,有这个说明:

要加
#include <conio.h>
getch
从VC8.0,即VS2005开始就不推荐使用了,推荐使用ISO C++中的_getch()代替它。
_getch
int _getch( void );
wint_t _getwch( void ); 
试验_getch()可用。
以前看的教材太老了,要跟上时代才行。

你可能感兴趣的:(getch()和_getch())