Problem #1: You are asked to write a program that calculates your electric bill. You are to input the number of kilo-watt hours (kWh) used in a 31 day billing period. Electricity costs 6.72 cents per kWh; a tax of 8% should be added. Write a program that accepts the number of kilo-watt hours used and prints a bill. Sample Run: Please enter the kilo watt hours over 31 days: 412 Electric bill for a 31 days period is as follows: Number of Kilo Watt hours: 412.0 Amount: $27.6864 Total: $29.901311999999997 Tax: $2.214912 Solution: import java.util.Scanner; public class Problem1 { public static void main(String[] args) { Scanner input=new Scanner(System.in); System.out.print("Please enter the kilo watt hours over 31 days: "); double Kwatt=input.nextDouble(); System.out.println("Electric bill for a 31 days period is as follows:"); System.out.println("Number of Kilo Watt hours: "+Kwatt); double amount=Kwatt*6.72/100; double tax Value=amount*0.08; System.out.println("Amount: $"+ amount+"\t Tax: $"+taxValue ); double total=amount+taxValue; System.out.println("Total: $"+ total); }

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter3: Input/output
Section: Chapter Questions
Problem 4PE: 4. During each summer, John and Jessica grow vegetables in their backyard and buy seeds and...
icon
Related questions
Question
Java
Problem #1:
You are asked to write a program that calculates your electric bill. You are to
input the number of kilo-watt hours (kWh) used in a 31 day billing period.
Electricity costs 6.72 cents per kWh; a tax of 8% should be added. Write a
program that accepts the number of kilo-watt hours used and prints a bill.
Sample Run:
Please enter the kilo watt hours over 31 days: 412
Electric bill for a 31 days period is as follows:
Number of Kilo Watt hours: 412.0
Amount: $27.6864
Tax: $2.214912
Total: $29.901311999999997
Solution:
import java.util.Scanner;
public class Problem1 {
public static void main(String[] args) {
Scanner input=new Scanner(System.in);
System.out.print("Please enter the kilo watt hours over 31 days: ");
double Kwatt=input.nextDouble();
System.out.println("Electric bill for a 31 days period is as follows:");
System.out.println("Number of Kilo Watt hours: "+Kwatt);
double amount3DKwatt*6.72/100;
double tax Value=amount*0.08;
System.out.println("Amount: $"+ amount+"\t Tax: $"+taxValue );
double total=amount+taxValue;
System.out.println("Total: $"+ total);
}
}
Transcribed Image Text:Problem #1: You are asked to write a program that calculates your electric bill. You are to input the number of kilo-watt hours (kWh) used in a 31 day billing period. Electricity costs 6.72 cents per kWh; a tax of 8% should be added. Write a program that accepts the number of kilo-watt hours used and prints a bill. Sample Run: Please enter the kilo watt hours over 31 days: 412 Electric bill for a 31 days period is as follows: Number of Kilo Watt hours: 412.0 Amount: $27.6864 Tax: $2.214912 Total: $29.901311999999997 Solution: import java.util.Scanner; public class Problem1 { public static void main(String[] args) { Scanner input=new Scanner(System.in); System.out.print("Please enter the kilo watt hours over 31 days: "); double Kwatt=input.nextDouble(); System.out.println("Electric bill for a 31 days period is as follows:"); System.out.println("Number of Kilo Watt hours: "+Kwatt); double amount3DKwatt*6.72/100; double tax Value=amount*0.08; System.out.println("Amount: $"+ amount+"\t Tax: $"+taxValue ); double total=amount+taxValue; System.out.println("Total: $"+ total); } }
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Introduction to computer system
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr