You are required to create a console application for a technology retail outlet that will allow a user to print out the total price of a product including VAT of 14%.The program must prompt the user for a product name , the price and print the final price including VAT. The retail outlet provides 5% discount to all products that have a final price that is greater than or equal to 10 000 In your solution include a class called products. The class must include the following: Two variables to store the product name and price excluding VAT; A method to return the product name A method to calculate and return the product price including VAT; Print the product name and the final price in the main() method with suitable wording Use java language
You are required to create a console application for a technology retail outlet that will allow a user to print out the total price of a product including VAT of 14%.The program must prompt the user for a product name , the price and print the final price including VAT. The retail outlet provides 5% discount to all products that have a final price that is greater than or equal to 10 000
In your solution include a class called products. The class must include the following:
Two variables to store the product name and price excluding VAT;
A method to return the product name
A method to calculate and return the product price including VAT;
Print the product name and the final price in the main() method with suitable wording
Use java language
Step by step
Solved in 4 steps with 2 images