getch()和getche()
对于c语言,这两个函数的原型在staio.h中,对于c++这两个函数在conio.h里
比较有意思的是:getch()接受了字符但不显示在屏幕上,getche()会显示在屏幕上
这两个函数均一次只能接受一个字符;
#include<iostream> #include<conio.h> #include<stdio.h> using namespace std; void main(){ char ch; ch=getch(); cout<<ch<<endl; system("pause"); }