Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The Week 4 portion of your Course Project is due this week. Please refer to the Course Project Overview in the Introduction and Resources module

The Week 4 portion of your Course Project is due this week. Please refer to the Course Project Overview in the Introduction and Resources module for full details. Use thisreport

Guess the number!

You will make program that will ask the user to guess a number between 1 and 10. The pseudocode is below. Be sure to import random at the beginning of your code and use a comment block explaining what your program does

#Guess the number week 4

#Name:

#Date:

#Random number, loop while true

#ask user for number.

#if number is too high or too low, tell user, if they guessed it break out of loop

Display "Welcome to my Guess the number program!"

random mynumber

while True

Display "Guess a number between 1 and 10"

Get guess

if (guess

Display "Too low"

else if (guess>mynumber)

Display "Too high"

else if (guess==mynumber)

Display "You guessed it!"

When you run your program the result should be something like this:

Welcome to my Guess the number program!

Please guess a number between 1 and 10: 5

Too high

Please guess a number between 1 and 10: 4

Too high

Please guess a number between 1 and 10: 3

Too high

Please guess a number between 1 and 10: 2

You guessed it!

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Financial management theory and practice

Authors: Eugene F. Brigham and Michael C. Ehrhardt

12th Edition

978-0030243998, 30243998, 324422695, 978-0324422696

Students also viewed these Programming questions

Question

Which type of soil has more ability to absorb water?

Answered: 1 week ago