हिंदी

Write an algorithm to display the total water bill charges of the month depending upon the number of units consumed by the customer as per the following criteria - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

Write an algorithm to display the total water bill charges of the month depending upon the number of units consumed by the customer as per the following criteria:

  • for the first 100 units @ 5 per unit
  • for next 150 units @ 10 per unit
  • more than 250 units @ 20 per unit

Also, add meter charges of 75 per month to calculate the total water bill.

टिप्पणी लिखिए

उत्तर

Input unit

If unit <= 100 then
    Bill = unit * 5

Elif unit <= 150 then
     Bill = unit * 10

Elif unit <= 250 then
     Bill = unit * 20

Calculate total bill = bill + 75
Print total bill
shaalaa.com
Representation of Algorithms
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 4: Introduction to Problem Solving - Exercise [पृष्ठ ८४]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 11
अध्याय 4 Introduction to Problem Solving
Exercise | Q 11. | पृष्ठ ८४
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×