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!

Respuesta :

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