
Patrick B. answered 12/14/20
Math and computer tutor/teacher
menuOption=-1
while (menuOption<0) or (menuOption>5)
output "Please select a language and I will say good morning"
output "1. English "
output "2. Italian"
output "3. Spanish"
output "4.German"
output "5. Exit the program"
output " Please input your selection :>"
input menuOption
end while
select case (menuOption)
case 1: output (' Good Morning'); end case1
case 2: output(' Buon Giorno'); end case2
case 3: output(' Buenas Diaz'); end case 3
case 4: output(' Guten Margen'); end case 4
case 5: output(' Goodbye Ciao Adios Auf Weirdersahn '); end case 5
end select
Ely M.
Thank you so much Sir, it's a big help for me :)12/15/20