Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Using eclipse under the com package create GroceryDemo class Methods: Create a total of 3 methods. A method called calculate Total that passes in the

image text in transcribed
Using eclipse under the com package create GroceryDemo class Methods: Create a total of 3 methods. A method called calculate Total that passes in the following parameters: the item price (double). the quantity sold (int) and the sales tax (double) and returns a double. It will calculate the total using the following algorithm: (price * sold) *(1 + tax/100). Ex: price is $1. items sold is 10, tax is 5%, the method would return 10.1 A method called calculate Average Sold that passes in five integers (for items sold on Monday, Tuesday, Wednesday, Thursday, and Friday). It returns and int for the average items sold (rounded down). Ex: If items sold were 10, 5, 8, 2, 4. The average would be (10+5+8+2+4)/5 which equals 5 (rounded down). A method called calculateProfit that passes in a purchaseCost(double), a soldCost (double), and a quantity (int). It will return the profit using this algorithm: (soldCost - purchaseCost) quantity Please have the main test all three methods. Class Outline: Package com Class: GroceryDemo main(String(): void calculate Total(double, int, double): double calculate Average Sold(int, int, int, int, int): int calculate Profile(double, double, int): double

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Structured Search For Big Data From Keywords To Key-objects

Authors: Mikhail Gilula

1st Edition

012804652X, 9780128046524

More Books

Students also viewed these Databases questions

Question

Write the properties of Group theory.

Answered: 1 week ago

Question

How is slaked lime powder prepared ?

Answered: 1 week ago

Question

Why does electric current flow through acid?

Answered: 1 week ago

Question

What is Taxonomy ?

Answered: 1 week ago