三级三级PC技术计算机与网络技术类_计算机编程基础
题目内容

a数组中是一组升序的数,现由键盘输入一个待查的整数x,用二分法查找,若x存在输出其所在的位置,否则给出没找到信息。请将程序填充完整。#include <stdio.h>#define N 10void main(){  int i,x,low,high;int a[10]={25,28,37,44,65,76,79,83,85,92};scanf("%d",&amp;n);low=0;high=9;scanf("%d",&amp;x);while (low<=high){  mid=(low+high)/2;if(x<a[mid]) high=mid-1;if(x>a[mid]) low=mid+1;if (x==a[mid]) break;}if(______) printf("found,%d in position %dn",n,mid);else printf("%d no foundn",n);}

2024-07-09

A.low

B.low<=high

C.low>high

D.low>=high

题目答案

试卷相关题目

最新试卷
热门试卷

长理培训客户端 资讯,试题,视频一手掌握

去 App Store 免费下载 iOS 客户端