Computer Science – 11.1 Programming Basics | e-Consult
11.1 Programming Basics (1 questions)
Login to see all questions.
Click on a question to view the answer
Pseudo-code:
- Begin
- Declare a real variable,
number. - Prompt the user to enter a positive real number and store it in
number. - Check if
numberis greater than 100. - If
number > 100then - Output "Greater than 100"
- Else
- Output "Less than or equal to 100"
- End If
- End