11.5k views
1 vote
Write a Raptor program that will generate a random number between 1 and 100; do not display the randomly generated number. Let the user guess within 3 tries what the random number is. Display appropriate messages based on each try, for example, "1 remaining try" or "You guessed correctly!"

2 Answers

6 votes

Answer:

The answer to this question can be given as:

Program:

#include <stdio.h> //include header file.

#include <stdlib.h> //include header file.

int main () //main method.

{

int number,choice; //define variable.

number = rand() % 10 + 1; //use random function and take value in number variable

for(int i=1;i<=3;i++) //loop for 3 time input.

{

printf ("\\ Enter the Guess number between 1 to 10 :\\"); //message

scanf ("%d",&choice); //input a number

if (number<choice) //check number

{

printf("Number is to lower\\ try= %d",i); //message

}

else if (number>choice) //check number

{

printf("Number is to higher\\ try= %d",i); //message

}

else if(number==choice ||number!=choice) //check number

{

printf("Congratulations...! \\ You guessed correctly!\\"); //message

break;

}

}

printf("\\ Number is :%d\\",number); //value

return 0;

}

Output:

Enter the Guess number between 1 to 10 :

5

Number is to lower

try= 1

Enter the Guess number between 1 to 10 :

8

Number is to lower

try= 2

Enter the Guess number between 1 to 10 :

6

Number is to lower

try= 3

Number is: 4

Step-by-step explanation:

The above C language program can be described as:

  • In this program firstly we include header files. Then we define the main function in this function we define a variable that is number and choice. The number variable holds the value of the random number that is taken by the rand function.
  • Then we define the loop. This loop is used to provide input validation. This means the user input number only three times. In this loop, we take input by the user in the choice variable.
  • Then we use the conditional statement. In this statement, we check the numbers. If the value match in 3 inputs so, it will print the message "Congratulations...! You guessed correctly!". Otherwise, we will print the random function value.
User Chenchuk
by
5.3k points
5 votes

Answer:

Step-by-step explanation:

Let's do this in Python, we can first generate the random number from 1 to 100. Then compare that with the input number from the guesser.

from random import random

random_0_1 = random()

random_1_100 = 1 if round(100*random_0_1) < 1 else round(100*random_0_1)

for trial in range(3):

guess = input('Guess the number: ')

if guess == random_1_11:

print('You guessed correctly!')

break

else:

print(2 - trial + " remaining try")

User ADJ
by
5.3k points