You are on page 1of 1

Algorithm for management of an event having fix budget of 10, 00000:

Step 1: start
Step 2: BCCI event: get the total fix budget amount
Step 3: gather the necessary equipment required
Step 4: add one by one equipment and its amount
Step 5: compare the equipment amount added with the total budget amount
Step 6: if the equipment amount exceeds the budget then show error and if it do not exceed
then keep adding on the equipment.
Step 7: display the current budget
Step 8: repeat the steps 4 to 6

Pseudo code for the algorithm:


Begin
Const_budget = 10, 00000
Equipment_amt = 0
Current_ amt = 0
add_equipment = 0
Do While equipment_amt <= const_bugdet
Add equipment
Calculate the current_amt= const_budget – equipment_amt
Display current_amt
equipment_amt = equipment_amt+1
End Do
End

You might also like