Complete a read me of what each class does in this assignment. | computer science | Florida International University, Modesto A. Maidique Campus

 

import java.util.ArrayList;

public class Checkout{

private ArrayList<Item> checkoutList;

Checkout(){

checkoutList= new ArrayList<Item>();

}

public int numberOfItems(){

return checkoutList.size();

}

public int totalCost(){

int sum=0;

for (Item i : checkoutList){

sum+=i.getCost();

}

return sum;

}

public int totalTax(){

return (int) java.lang.Math.round(GroceryStore.TAX_RATE*totalCost()/100.0);

}

public void clear(){

checkoutList.clear();

}

public void enterItem(Item i){

checkoutList.add(i);

}

public String toString(){

;

System.out.println(“t”+GroceryStore.STORE_NAME);

System.out.println(“nt——————-“);

for (Item i : checkoutList){

System.out.println(i.toString());

}

System.out.println(“nTax “+GroceryStore.cents2dollarsAndCents(totalTax()));

System.out.println(“nTotal Cost “+GroceryStore.cents2dollarsAndCents(totalCost()+totalTax()));

return “”;

}

}

// Test Check out

 

public class TestCheckout {

public static void main(String[] args) {

 Checkout checkout = new Checkout();

 checkout.enterItem(new Rice(“Basmati Rice”, 2.25, 399));

 checkout.enterItem(new Baguette(“Wheat Baguette”, 105));

 checkout.enterItem(new FlavoredBaguette(“White Baguette”, 145, “Chocolate”, 50));

 checkout.enterItem(new Egg(“Grade A Organic Eggs”, 4, 399));

 System.out.println(“nNumber of items: ” + checkout.numberOfItems() + “n”);

 System.out.println(“nTotal cost: ” + checkout.totalCost() + “n”);

 System.out.println(“nTotal tax: ” + checkout.totalTax() + “n”);

 System.out.println(“nCost + Tax: ” + (checkout.totalCost() + checkout.totalTax()) + “n”);

 System.out.println(checkout);

 checkout.clear();

 checkout.enterItem(new Baguette(“Organic Baguette”, 145));

 checkout.enterItem(new FlavoredBaguette(“Wheat Baguette”, 105, “Caramel”, 50));

 checkout.enterItem(new Rice(“Indian Brown Rice”, 1.33, 89));

 checkout.enterItem(new Egg(“Grade B Egg”, 4, 399));

 checkout.enterItem(new Rice(“Arabic White Rice”, 1.5, 209));

 checkout.enterItem(new Rice(“Spanish Yellow Rice”, 3.0, 109));

 System.out.println(“nNumber of items: ” + checkout.numberOfItems() + “n”);

 System.out.println(“nTotal cost: ” + checkout.totalCost() + “n”);

 System.out.println(“nTotal tax: ” + checkout.totalTax() + “n”);

 System.out.println(“nCost + Tax: ” + (checkout.totalCost() + checkout.totalTax()) + “n”);

 System.out.println(checkout);

}

//Baguette 

public class Baguette extends Item {

private double cost;

public Baguette(String name, double cost) {

super(name);

this.cost = cost;

}

@Override

public int getCost()

{

return (int)Math.ceil(cost);

}

@Override

public String toString() {

return name+” @” + GroceryStore.cents2dollarsAndCents(getCost());

}

}

 

public class Rice extends Item {

double weight;

double price;

public Rice(String name, double weight, double price) {

 super(name);

 this.weight = weight;

 this.price = price;

}

@Override

public int getCost() {

 return (int) Math.ceil(weight * price);

}

@Override

public String toString() {

 return “rice” + weight + “lbs @” + GroceryStore.cents2dollarsAndCents(getCost());

}

}







Place your order
(550 words)

Approximate price: $22

Calculate the price of your order

550 words
We'll send you the first draft for approval by September 11, 2018 at 10:52 AM
Total price:
$26
The price is based on these factors:
Academic level
Number of pages
Urgency
Basic features
  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support
On-demand options
  • Writer’s samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading
Paper format
  • 275 words per page
  • 12 pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, Chicago/Turabian, Harvard)

Our guarantees

Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.

Money-back guarantee

You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.

Read more

Zero-plagiarism guarantee

Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.

Read more

Free-revision policy

Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.

Read more

Privacy policy

Your email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.

Read more

Fair-cooperation guarantee

By sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.

Read more

Enjoy 10% OFF today with the coupon code: save10