gpt4 book ai didi

c - 标准C限时输入

转载 作者:太空狗 更新时间:2023-10-29 15:41:06 27 4
gpt4 key购买 nike

我目前正在做作业,必须使用 C-Free 5.0。只需要你的帮助来解决这 block 拼图。我想为用户在到期前输入答案实现一个时间限制。我试过这段代码,但它在 scanf() 函数处被阻塞了。是否有任何其他方法,如解锁输入或其他方法。我已经尝试实现“#include <sys/select.h>” ' 但是这个程序没有那个库。

#include <stdio.h> 
#include <string.h>
#include <time.h>
#include <stdlib.h>

int main()
{
char st[10];
printf ("Please enter a line of text : ");
time_t end = time(0) + 5; //5 seconds time limit.
while(time(0) < end)
{
scanf("%s", &st);
if(st != NULL)
{
printf ("Thank you, you entered >%s<\n", st);
exit(0);
}
}
main();
}

最佳答案

这是一个示例程序,展示了如何在 stdin 文件描述符上使用 O_NONBLOCK 标志。

#include <stdio.h>
#include <time.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>

#define INPUT_LEN 10

int main()
{
printf ("Please enter a line of text : ");
fflush(stdout);
time_t end = time(0) + 5; //5 seconds time limit.

int flags = fcntl(STDIN_FILENO, F_GETFL, 0);
fcntl(STDIN_FILENO, F_SETFL, flags | O_NONBLOCK);

char answer[INPUT_LEN];
int pos = 0;
while(time(0) < end)
{
int c = getchar();

/* 10 is new line */
if (c != EOF && c != 10 && pos < INPUT_LEN - 1)
answer[pos++] = c;

/* if new line entered we are ready */
if (c == 10)
break;
}

answer[pos] = '\0';

if(pos > 0)
printf("%s\n", answer);
else
puts("\nSorry, I got tired waiting for your input. Good bye!");
}

关于c - 标准C限时输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13551058/

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