暨南大学复试上机_1604

二分法猜数

两个人A和B猜数,先输入一个n(1<=n<=1000),A从1到n之间选一个数,B来猜这个数,A会告诉B是大了还是小了,B至少要多少次才能确定A选的那个数呢

#include
int main(){
	int n,a;
	printf("请输入游戏范围:\n");
	scanf("%d",&n);
	printf("请输入游戏数字:\n");
	scanf("%d",&a);
	int count=1;
	int low=1,high=n;
	int tmp=(low+high)/2;
	while(tmp!=a){
		if(a

你可能感兴趣的:(暨南大学复试上机_1604)