87.4k views
1 vote
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!

1 Answer

5 votes
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


User Austin Taylor
by
8.3k points