

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
i hope this can help you in your studies
Typology: Assignments
1 / 2
This page cannot be seen from the preview
Don't miss anything!


BEGIN // Welcome to ice cream parlor Show menu // price and name of ice-creams Bill= Top: // label Enter flavor If flavor is not in menu then display invalid choice again ask for input Enter scoop If scoop is not between 1 to 3 then show in valid choice again ask for input If (flavor==”Tutti-frutti” or flavor==”Chocolate “ or flavor== “Pine apple” or flavor==”Kulfa” or flavor==”Strawberry” or flavor== “pistachio”) If (scoop==1): Bill= bill+ Else if (scoop==2): Bill= bill+ Else if (scoop=3): Bill = bill+ 100 End if Else if (flavor==’mango’): If (scoop==1): Bill =bill+ Else if (scoop==2): Bill =bill+ Else if (scoop=3): Bill =bill+ End if Else if (flavor==’orange’): If(scoop==1):
Bill =bill+ Else if (scoop==2): Bill =bill+ Else if(scoop=3) Bill =bill+ End if Go to top label Print bill stop