English assignment no 1, Assignments of Business English

i hope this can help you in your studies

Typology: Assignments

2022/2023

Uploaded on 08/20/2023

kiran-laraib
kiran-laraib 🇵🇰

5 documents

1 / 2

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Assignment cs101
BEGIN // Welcome to ice cream parlor
Show menu // price and name of ice-creams
Bill=0
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+150
Else if (scoop==2):
Bill= bill+120
Else if (scoop=3):
Bill = bill+ 100
End if
Else if (flavor==’mango’):
If (scoop==1):
Bill =bill+175
Else if (scoop==2):
Bill =bill+150
Else if (scoop=3):
Bill =bill+130
End if
Else if (flavor==’orange’):
If(scoop==1):
pf2

Partial preview of the text

Download English assignment no 1 and more Assignments Business English in PDF only on Docsity!

Assignment cs

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