gpt4 book ai didi

c - 当我只需要一个输入时,为什么 getchar() 需要两个输入?

转载 作者:行者123 更新时间:2023-11-30 17:07:41 26 4
gpt4 key购买 nike

我试图只读取一个字符,但我的循环继续获取输入的键“输入”键。我如何防止这种情况发生并只获取第一把 key ?这是一个例子:

#include <stdio.h>
#include <iostream>
#include <fstream>

using namespace std;

int rseed = 1448736593;

int main(int argc, char** argv) {

printf("#Program started successfully with random seed %i\n", rseed);

int c;
while(true) {
printf("input: ");
c = getchar();
printf("You selected %i\n", c);
}
return 0;
}

这是代码给出的内容:

#Program started successfully with random seed 1448736593
input: 2
You selected 50
input: You selected 10
input: 3
You selected 51
input: You selected 10
input: 1
You selected 49
input: You selected 10
input: ^C

如何防止它告诉我我选择了 10?我想在用户只按“回车”而没有其他任何操作时保留它。

最佳答案

您获得的第二个值(10 - 换行符/换行符的十进制 ASCII 代码)是因为按 Enter 键产生换行符。

解决这个问题的最简单方法:

c = getchar();
if (c != '\n') // or (c != 10)
getchar(); // call again getchar() to consume the newline
printf("You selected %i\n", c);

现在的输出是:

input: 2
You selected 50
input: 3
You selected 51
input: // <- Enter alone was pressed here
You selected 10
input: 1
You selected 49
input: ^C

但是这里未处理用户在按 Enter 之前输入多个字符的情况,在这种情况下,每隔一个字符将被忽略。

关于c - 当我只需要一个输入时,为什么 getchar() 需要两个输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33989445/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com