Question #259784

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.

Expert's answer

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
LATEST TUTORIALS
APPROVED BY CLIENTS