Ask Question
18 November, 16:43

A pseudocode program is started below that asks the user for input and stores the value in a variable. Continue writing pseudocode to accomplish this task: If the hour is within the school day (8 to 15) then display "Nice to see you!", Otherwise, display "It's time to go home!

+3
Answers (1)
  1. 18 November, 17:17
    +1
    Begin

    input value,

    int a = value;

    if a >=8 Or a<=15;

    cout<<"Nice to see you!";

    else

    cout<<"Its time to go home!";

    return 0;

    End
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “A pseudocode program is started below that asks the user for input and stores the value in a variable. Continue writing pseudocode to ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers