Problem #2
Utility Bill
Write a program to calculate and print a utility bill for a utility customer. Before calculating the bill, you must ask the user for input. Ask the user for 3 items: customer name, kilowatt hours used, and gallons of water used.
The total utility bill is calculated by adding the electricity charge to the water charge. The electricity charge is determined by multiplying the kilowatt hours used by the constant rate for electricity usage. The water charge is determined by multiplying the number of gallons used by the constant rate for water usage. The various rates are:
Electricity: $0.005 per kilowatt hour
Water: $0.075 per one hundred gallons used
Once the bill is calculated, output the customers name along with the amounts owed for electricity and water. Also output the total amount owed.