0% found this document useful (0 votes)
22 views1 page

ITP Assgn1

The algorithm manages an event with a fixed budget of Rs. 10,00,000 by gathering equipment requirements, adding equipment costs one by one, comparing the running total to the budget, displaying the remaining budget, and repeating until the budget is reached or exceeded.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views1 page

ITP Assgn1

The algorithm manages an event with a fixed budget of Rs. 10,00,000 by gathering equipment requirements, adding equipment costs one by one, comparing the running total to the budget, displaying the remaining budget, and repeating until the budget is reached or exceeded.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 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