143k views
2 votes
Description

In this Binary Search Guessing Game, The computer must check for the presence of an integer number in a provided range from start to end (inclusive). At the end of the game, the number is revealed along with the number of tries it took the computer to get the correct number. You should take the number being searched for from user input. The computer should use the binary search algorithm to solve this question.

NOTE: You are provided a range in which the number will be contained. DO NOT CHANGE THE PROVIDED start and end VARIABLES.

Input

n, where n is the number you will search for in the integer range provided.
Sample Input

7
Output

The number being searched for and the number of tries to find it
Sample Output

The number is: 7
It took 4 tries!

User Germana
by
7.8k points

1 Answer

3 votes

Final answer:

The subject of this question is Computers and Technology. The game described involves using the binary search algorithm to find a specific number within a provided range.

Step-by-step explanation:

The subject of this question is Computers and Technology. The game described involves using the binary search algorithm to find a specific number within a provided range. The computer takes user input for the number to search for and uses the binary search algorithm to narrow down the search range until the number is found. The game keeps track of the number of tries it takes to find the correct number.

User XMRi
by
8.0k points