gpt4 book ai didi

c - 如何解决此程序中重复扫描的问题?

转载 作者:行者123 更新时间:2023-11-30 16:49:31 25 4
gpt4 key购买 nike

所以这个程序应该猜测你心中想到的一个数字。但如果你运行它并在问你第一个问题后看到它不再需要输入。

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

int main(){
printf("Enter the upper limit for the range of numbers:\n");
int n;
scanf("%d", &n);
int low=0;
int high=n;
printf("Answers should only be y for yes or n for no.\n");
do{
int median;
median=(high+low)/2;
printf("Is your number greater than %d median?\n", median);
char ans;
scanf("%c", &ans);
if(ans=='y' || ans=='Y'){
low=median;
continue;
}
else{
printf("Is your number smaller than %d median?\n", median);
scanf("%c", &ans);
if(ans=='y' || ans=='Y'){
high = median;
continue;
}
else
{
low = high = median;
}
}
}while(low != high);
printf("Your number is: %d\n", low);
return 0;

}

最佳答案

试试这个:

scanf(" %c", &ans);

而不是

scanf("%c", &ans);

关于c - 如何解决此程序中重复扫描的问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42559408/

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