Getting the age of participant, if the age is less than or equal to 17 you need to print "sorry
you're not able to join the event", else you need to print "welcome to the event.
Start
Declare integer variable age
Read age from the user
if age<=17 then
Display message: "sorry you're not able to join the event"
else
Display message: "welcome to the event"
End if
Stop
Comments
Leave a comment