关于getchar函数的问题
新人求助我的目的:若输入Y或者y 输出Yes;输出其它字符时 输出No
实际情况:①我输入Y或者y时 输出Yes no
②我输入其它字符时 输出No No
请问原因^_^
#include <cstdio>
using namespace std;
int main()
{
int ch;
while (1)
{
ch = getchar();
if (ch == 'Y' || ch == 'y')
{
printf("Yes\n");
}
else
{
printf("No\n");
}
}
return 0;
}
因为每次输入完之后还有一个回车符被下一轮循环读取了。
#include <cstdio>
using namespace std;
int main()
{
int ch;
while (1)
{
ch = getchar();
if (ch == 'Y' || ch == 'y')
{
printf("Yes\n");
}
else
{
printf("No\n");
}
getchar(); //读取并丢弃回车符
}
return 0;
} 本帖最后由 jackz007 于 2020-3-9 17:48 编辑
楼上的解释是正确的,带缓冲的键盘输入必须要在按下回车键后,才能获得输入。
要不要体验一下无缓冲的输入,按下按键立见分晓,不需要按下回车键?
#include <stdio.h>
#include <conio.h>
main(void)
{
char c ;
while((c = getch()) != 0x03) {
if(c == 'Y' || c == 'y') printf("Yes\n") ;
else printf("No\n") ;
}
printf("\n") ;
}
按下 Ctrl-C 结束运行
页:
[1]