getchar()&&getch()

#include <stdio.h>
#include <conio.h>

void main(){
	char ch;
	for (;;)
	{
		ch=getchar(); //getch()才能获取键值这里getchar是错误的
		if (ch==27)
		{
			break;
		}
		//if (ch==13)
		//{
		//	continue;

		//}如果没有这段,回车后getch的缓冲会被重写,有个continue效果就不一样了。
		putchar(ch);
		//putch(ch);
	}
}

你可能感兴趣的:(getchar()&&getch())