Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

I NEED THIS ANSWER IN JAVA A retail store has a preferred customer plan where cu

ID: 672744 • Letter: I

Question

I NEED THIS ANSWER IN JAVA

A retail store has a preferred customer plan where customers can earn discounts on all their purchases. The amount of a customer's discount is determined by the amount of the customer's cumulative purchases in the store , as follows:

When a preferred customer spends $500, they get a 5% discount on all future purchases.

When a preferred customer spends $1,000, they get a 6% discount on all future purchases.

When a preferred customer spends $1,5000, they get a 7% discount on all future purchases.

When a preferred customer spends $2,000, they get a 10% discount on all future purchases.

Design a class named PreferredCustomer, which inherits from the Customer class you created in Exercise 7. The preferredCustomer class should have int fields for the amount of the customer's purchases and the customer's discount level. Write a constructor that initializes these fields as well as accessor and mutator methods .

Desmonstrate the class in a program that prompts the user to input the customer's name , address, phone number, customer number, whether they want to recieve mail, and the amount they've spent, and then uses that information to create a PreferredCustomer object and print its information. (Use string formatting to print the amount spent.) Create all of the classes in the same file by not delcaring any of them public.

SAMPLE RUN #1

Interactive Session

Enter name of customer:Holly Alto

Enter address of customer:2797 Colonial Forest Wayzata, Wisconsin 53193

Enter phone number of customer:608-142-1014

Enter customer number:668602797

Enter yes/no -- does the customer want to recieve mail?:yes

Enter amount customer has spent:1756

Customer:

Name: Holly Alto

Address: 2797 Colonial Forest Wayzata, Wisconsin 53193

Phone Number: 608-142-1014 Customer Number: 668602797

Recieve Mail?: true Amount Purchased: $1756.00 Percent off: 7%

Explanation / Answer

import java.util.*;
class CustomerDiscount
{
   public static void main(String args[])
   {
       Scanner in = new Scanner(System.in);  
       System.out.println("Enter name of customer:");
       String name = in.nextLine();
       System.out.println("Enter address of customer:");
       String address = in.nextLine();
       System.out.println("Enter phone number of customer");
       String phoneNo = in.nextLine();
       System.out.println("Enter customer number");
       String customerNo = in.nextLine();
       System.out.println("Receive mail?");
       Boolean receiveMail = in.nextBoolean();
       System.out.println("Enter amount customer has to spend:");
       double amount = in.nextDouble();

       System.out.println("Customer:");
       System.out.println("Name:" + name);
       System.out.println("Address:" + address);
       System.out.print("Phone number:" + phoneNo);
       System.out.print(" Customer Number: " + customerNo + " ");
       System.out.print("Reveive Mail?:" + receiveMail.toString());
       System.out.println("Amount Purchased: $" + amount);
       int percentOff = 0;
       if(amount > 500 && amount < 1000)
           percentOff = 5;
       else if(amount > 1000 && amount < 1500)
           percentOff = 6;
       else if(amount > 1500 && amount < 2000)
           percentOff = 7;
       else
           percentOff = 10;
      
   }

}