82.9k views
3 votes
Write a Pseudocode (or shell-script) structure that assigns the value of "low"

to the variable named outcome if the variable named userGuess is less than 42;
–it assigns "high" to outcome, if it is above 42; –and assigns "exactly right"
to outcome if userGuess is equal to 42.

Then, display the result to the screen with a message that tells the user:
Your guess at the number is: _
and then append the value of outcome to display.

** Just create the Pseudocode (or shell-script) for the structure, not the whole program. ** No need to declare variable types. **

User GenericJon
by
8.1k points

2 Answers

3 votes
If userGuess is less than 42, then
- Assign "low" to the variable named outcome
Else if userGuess is greater than 42, then
- Assign "high" to the variable named outcome
Else
- Assign "exactly right" to the variable named outcome

Display the message:
- "Your guess at the number is: " concatenated with the value of userGuess concatenated with the value of outcome.
User AffluentOwl
by
7.8k points
1 vote

Answer:

If userGuess < 42:

outcome = "low"

Else If userGuess > 42:

outcome = "high"

Else:

outcome = "exactly right"

Display "Your guess at the number is: " + userGuess + " and the result is " + outcome

User Sunriax
by
8.2k points