Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C# Programming: How do I code this please , do I used the Do-Loops for this ? 1. Initializes a random number (see code fragment
C# Programming: How do I code this please , do I used the Do-Loops for this ?
1. Initializes a random number (see code fragment below) to a value between 1 and 10, inclusive. 2. Repeatedly asks the user to guess what the number is until the number is guessed. 1. If the guess is higher than the number, tell the user their guess is too high and that they should guess again. 2. If the guess is lower than the number, tell the user their guess is too low and that they should guess again. 3. If the guess is equal to the number, tell them: 1. That their guess was correct, and 2. How many guesses they made. Here's the code to create a random number: Random RandomClass = new Random(); int randomNumber; randomNumber = RandomClass.Next(MIN, MAX); //random number will be >= MIN and
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started