Java

Electricity Bill Calculation using Java Application

This tutorils teach Electricity Bill Calculating based on the below conditions step by step

  1. First 100 units: $0.10 per unit
  2. Next 200 units (101 to 300): $0.15 per unit
  3. Above 300 units: $0.20 per unit

 

This is code of the project

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) 
{                                         
        int unitcal = Integer.parseInt(txtUnit.getText());
        double totalbill = calBill(unitcal);
        txtBill.setText(String.format(" $%.2f", totalbill));
}                                        

    int units;
    private static double calBill(int units)
    {
        double totbill = 0.0;
        
        if(units <= 100)
        {
            totbill = units * 0.10;
        }
        else if(units <= 300)
        {
            totbill = 100 * 0.10 + (units -100) * 0.15;
        }
        else
        {
             totbill = 100 * 0.10 +  200 * 0.15 + (units -300) * 0.25;
        }
        return totbill;
    }

 

 

 

 

admin

Recent Posts

Touchable shop Pos system using Java

The Touchable Shop POS (Point of Sale) system is a sophisticated software solution developed using…

1 week ago

Build Your First Responsive Login Form Using HTML and CSS FlexBox

Creating a responsive login form is a crucial skill for any web developer. In this…

2 weeks ago

Build Crud API with Laravel 12

In this tutorial will teach  Laravel 12 CRUD API  by step. Laravel  10 CRUD Application …

2 weeks ago

laravel 12 image upload tutorial

In this lesson we talk about laravel 12 image uploading and display the image step…

3 weeks ago

Laravel 12 CRUD Application

In this tutorial will teach Laravel 12 CRUD Application step by step. Laravel  12 CRUD…

4 weeks ago

Conditional Statements in Python

Conditional statements in Python allow us to control the flow of execution based on conditions.…

2 months ago