C++ 写一个程序:获取字符ASCII码

#include 
using namespace std;
#include
#include
#include
int main()
{
	while (1)
	{
		fflush(stdin);
		int ch = int(_getch());
		cout << "************" << endl;
		cout << ch << endl;
		
	}
	return 0;
}

运行结果:

************
w 119
************
u 117
************
o 111
************
p 112
************
q 113

 

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