
I keep coming up with the wrong answer, please help:
Here is the code given:
public class Billing {
final static double TAX = 0.08;
public static void main(String[] args) {
final double HIGHPRICE = 24.99;
final double MEDPRICE = 17.50;
final double LOPRICE = 10.00;
final int QUAN1 = 4;
final int QUAN2 = 6;
double bill;
bill = computeBill(HIGHPRICE);
System.out.println("The total for a photobook that costs $" +
HIGHPRICE + " is $" + bill);
bill = computeBill(MEDPRICE, QUAN1);
System.out.println("The total for " + QUAN1 +
" photobooks that cost $" +
MEDPRICE + " is $" + bill);
bill = computeBill(LOPRICE, QUAN2, 20.00);
System.out.println("The total for " + QUAN2 +
" photobooks that cost $" +
LOPRICE + " with a $20 coupon is $" + bill);
}
public static double computeBill(double amt) {
// Write your code here
}
public static double computeBill(double amt, int quantity) {
// Write your code here
}
public static double computeBill(double amt, int quantity, double coupon) {
// Write your code here
}
}
Here is what they are asking for me to do:
Create a class named Billing that includes three overlaoded computeBill(0 methods for a photo book store.
When computeBill() recieves a single parameter, it represents the price of one book ordered. Add 8% tax, and return the total due.
When computeBill() recieves two parameters, they represent the price of a photo book and the quantity ordered. Multiply the two values, add 8% tax, and return the total due
When computeBill() recieves three parameters, they represent the price of a photo book, the quantity ordered, and a coupon value. Multiply the quantity price, redue the result by the coupon vlaue, and then add 8% tax and return the total due.

Trending nowThis is a popular solution!
Step by stepSolved in 3 steps with 1 images

- Whats the output?arrow_forwardThe following is in Java: public class MyClass { private int x; private double y; public static void setValues(int a, double b) { x = a; y = b; } } 1) What is the problem? 2) In a few sentences how can the issue be fixed?arrow_forwardI cannot get this Java program to run as the solution on the website says. I have 6 errors and was wondering if maybe you can fix them for me. //Class definition class InchesToFeet {//Main method definitionpublic static void main(String[] args);{ //Declare constant variables final int INCHES_IN_FOOT=12; int inchesLeft; //Compute number of feet in given inches feet=inches / INCHES_IN_FOOT; //Display the message System.out.println(inches+"inches is" + feet + "feet and"+inchesLeft+inches);} }arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





