Create a class named Purchase. Each Purchase contains an invoice number, amount of sale and sales tax. Include getter and setter methods for each property. Write a method called InvoiceTotal to compute the total of invoice. Save this in file called Purchase.java Create another class with the following: In this class, create a Purchase Object after prompting the user for necessary details. (You need to figure out what to ask the user for). When you prompt the user for invoice number do not let the user proceed unless the invoice number is between 5 and 55. For sales amount do not let the user proceed if they enter a negative value. After instantiating a Purchase object, show all the properties of the invoice object
jada please Create a class named Purchase. Each Purchase contains an invoice number, amount
of sale and sales tax. Include getter and setter methods for each property.
Write a method called InvoiceTotal to compute the total of invoice. Save this in
file called Purchase.java
Create another class with the following:
In this class, create a Purchase Object after prompting the user for necessary
details.
(You need to figure out what to ask the user for).
When you prompt the user for invoice number do not let the user proceed unless
the invoice number is between 5 and 55.
For sales amount do not let the user proceed if they enter a negative
value. After instantiating a Purchase object, show all the properties of
the invoice object.
Step by step
Solved in 2 steps with 1 images