Rumah > pembangunan bahagian belakang > Tutorial Python > Tulis program ke kalkulator bil EB

Tulis program ke kalkulator bil EB

DDD
Lepaskan: 2024-11-19 00:18:02
asal
784 orang telah melayarinya

Write a program to EB bill calculator

Kalkulator bil Lembaga Elektrik:

Kalkulator Bil Elektrik (EB) ialah alat yang digunakan untuk menganggar kos penggunaan elektrik berdasarkan unit yang digunakan dan kadar tarif yang berkenaan.

Formula:
Kos Elektrik = Penggunaan Elektrik (kWj) x Kadar Tarif seunit.

Contoh:

# Function to calculate electricity bill based on unit consumption
def eb(unit):
    # First 100 units are free
    if unit <= 100:
        cost = 0.00
    # For 101–200 units, charge ₹2.50 per unit above 100
    elif unit <= 200:
        cost = (unit - 100) * 2.50
    # For 201–300 units, add ₹3.00 per unit above 200
    elif unit <= 300:
        cost = 100 * 2.5 + (unit - 200) * 3.00
    # For 301–400 units, add ₹4.50 per unit above 300
    elif unit <= 400:
        cost = 100 * 2.5 + 100 * 3 + (unit - 300) * 4.50
    # For units above 400, add ₹6.00 per unit above 400
    else:
        cost = 100 * 2.5 + 100 * 3 + 100 * 4.5 + (unit - 400) * 6.00
    # Return the total calculated cost
    return cost

# input the total units consumed
unit = int(input("Enter the unit: "))

# Call the `eb` function to calculate the electricity bill
eb_bill = eb(unit)

# Display the calculated electricity bill amount
print("Electricity bill amount:", eb_bill)
Salin selepas log masuk

Output:

Enter the unit:345
Electricity bill amount: 752.5
Salin selepas log masuk

Atas ialah kandungan terperinci Tulis program ke kalkulator bil EB. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Tutorial Popular
Lagi>
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan