Question: I need this method written in java please A pet shop wants to give a discount to its clients if they buy one or more
I need this method written in java please
A pet shop wants to give a discount to its clients if they buy one or more pets and at least five other items. The discount is equal to 20 percent of the cost of the other items, but not the pets.
Implement a method
public static void discount(double[] prices, boolean[] isPet, int nItems) |
The method receives information about a particular sale. For the ith item, prices[i] is the price before any discount, and isPet[i] is true if the item is a pet.
Write a program that prompts a cashier to enter each price and then a Y for a pet or N for another item. Use a price of 1 as a sentinel. Save the inputs in an array. Call the method that you implemented, and display the discount.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
