An electricity board charges the following rates to domestic users to discourage large consumption of energy. The board desired to collect more money for the customers those who are consuming more energy. So, they designed the following rule to calculate the bill. From their consumed energy, For the first 100 units - 10 Paisa per unit For next 200 units - 20 Paisa per unit Beyond 300 units 30 Paisa per unit If the total cost is more than 10 OMR, then an additional surcharge of 15% is added with the total cost to find the Bill Amount. Write a Java program to read the consumed energy of a customer and then calculate the Bill Amount according to the above rule and then print the consumed unit of energy with the Bill Amount. Note: Write a Java Program using Multi-way if-else statements and rewrite the same program by using switch O case statement. Can you recognize both switch case and multi-way if-else statements are having the same effect or not?
An electricity board charges the following rates to
domestic users to discourage large consumption of
energy. The board desired to collect more money for
the customers those who are consuming more energy.
So, they designed the following rule to calculate the
bill.
From their consumed energy,
For the first 100 units - 10 Paisa per unit
For next 200 units
- 20 Paisa per unit
Beyond 300 units
30 Paisa per unit
If the total cost is more than 10 OMR, then an
additional surcharge of 15% is added with the
total cost to find the Bill Amount.
Write a Java program to read the consumed energy of
a
customer and then
calculate the Bill Amount
according to the above rule and then print the
consumed unit of energy with the Bill Amount.
Note: Write a Java Program using Multi-way if-else
statements and rewrite the same program by using
switch O case statement. Can you recognize both
switch case and multi-way if-else statements are
having the same effect or not?
Step by step
Solved in 4 steps with 2 images