for each s in students
if s.age == 99 then exit
if s.age <= 20 then continue
print s.name, s.age
next s
write a pseudo code which prints a list of all students over the age of 20 in a class. the input record contains age,name of students assume a sentine value of 99
1 answer