Through java 'import java.util.Random;' using the provided code and enum:  public enum Menu { Corndog, Pizza, Nachos, Bagle, Ice_Cream, Stir_Fry, }   Create a main method: a) Create at least 2 meals. (any length)      Determine the cost of 2 meals. b) Repeat but by creating orders.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
Through java 'import java.util.Random;' using the provided code and enum: 
public enum Menu {
Corndog,
Pizza,
Nachos,
Bagle,
Ice_Cream,
Stir_Fry,
}
 
Create a main method:
a) Create at least 2 meals. (any length)
     Determine the cost of 2 meals.
b) Repeat but by creating orders.
 
1 // Order.java
2
3
5
7
8
18
11
12
13
14
15
16
17
18
19
28
21
22
23
24
25
26
27
28
29
38
31
32
33
35
36
37
38
39
48
41
42
44
46
48
58
51
import java.util.Random;
public class Order
// Method to create a random meal of specified length
public static Menu[] createMeal(int length) {
Menu[] meal - new Menu[length];
Random random - new Random();
for (int i = 0; i < length; i++) {
// Generate a random index
select a Menu item
int random Index - random.nextInt (Menu.values().length);
meal [1] - Menu.values() [random Index];
}
return neal;
}
* // Method to create an order with a specified number of meals
public static Menu[][] createOrder(int numMeals) {
Menu[][] order = new Menu[numMeals] [];
for (int i = 0; i < numMeals; i++) {
}
order[1] - createMeal (numMeals - 1);
return order;
}
// Method to calculate the cost of a meal
public static int mealCost(Menu[] meal) {
int cost = 0;
for (int i = 0; i < meal.length; i++) {
cost +- i * Menu.valueOf(meal[i]_name()).ordinal();
}
return cost;
}
// Method to calculate the cost of an order
public static int orderCost(Menu[][] order) {
int totalCost - 8;
for (Menu[] meal: order) {
}
totalCost +- mealCost(meal);
return totalCost;
Transcribed Image Text:1 // Order.java 2 3 5 7 8 18 11 12 13 14 15 16 17 18 19 28 21 22 23 24 25 26 27 28 29 38 31 32 33 35 36 37 38 39 48 41 42 44 46 48 58 51 import java.util.Random; public class Order // Method to create a random meal of specified length public static Menu[] createMeal(int length) { Menu[] meal - new Menu[length]; Random random - new Random(); for (int i = 0; i < length; i++) { // Generate a random index select a Menu item int random Index - random.nextInt (Menu.values().length); meal [1] - Menu.values() [random Index]; } return neal; } * // Method to create an order with a specified number of meals public static Menu[][] createOrder(int numMeals) { Menu[][] order = new Menu[numMeals] []; for (int i = 0; i < numMeals; i++) { } order[1] - createMeal (numMeals - 1); return order; } // Method to calculate the cost of a meal public static int mealCost(Menu[] meal) { int cost = 0; for (int i = 0; i < meal.length; i++) { cost +- i * Menu.valueOf(meal[i]_name()).ordinal(); } return cost; } // Method to calculate the cost of an order public static int orderCost(Menu[][] order) { int totalCost - 8; for (Menu[] meal: order) { } totalCost +- mealCost(meal); return totalCost;
1. Create Order.java
2.
3.
4.
5.
a.
createMeal
a.
b.
C.
a.
createOrder
b.
C.
Class that defines various static methods to create and calculate the costs of meals and orders.
a.
b.
Return an array of Menu arrays representing the order.
The largest meal should occupy index 0 in the returned array. Subsequent meals in the array
should have one less item than the meal at the previous index
d. Each meal in the order should be populated with Menu items such that each kind of Menu has an
equal chance of being selected
C.
Takes an int representing the length of the mean. (using java.util.Random)
Return a Menu array of the specified length representing the meal.
Populate each slot in the Menu array such that each kind of Menu has an equal chance of being
selected.
mealCost
a.
b.
Takes in an int representing the number of means in the order. (this parameter also represents the
length of the largest meal.)
C.
Takes in a Menu array representing the meal of which to calculate the cost.
Return an int representing the cost of the meal.
orderCost
Calculate the cost of the meal. (The price of the given Menu element is calculated as the product
of its index in the meal and the index of that Menu as it was enumerated in the Menu enum.
Takes in an array of Menu arrays representing the order of which to calculate the cost.
Return an int representing the cost of the order.
The cost of the order is the sum of the costs of each meal in the order.
Transcribed Image Text:1. Create Order.java 2. 3. 4. 5. a. createMeal a. b. C. a. createOrder b. C. Class that defines various static methods to create and calculate the costs of meals and orders. a. b. Return an array of Menu arrays representing the order. The largest meal should occupy index 0 in the returned array. Subsequent meals in the array should have one less item than the meal at the previous index d. Each meal in the order should be populated with Menu items such that each kind of Menu has an equal chance of being selected C. Takes an int representing the length of the mean. (using java.util.Random) Return a Menu array of the specified length representing the meal. Populate each slot in the Menu array such that each kind of Menu has an equal chance of being selected. mealCost a. b. Takes in an int representing the number of means in the order. (this parameter also represents the length of the largest meal.) C. Takes in a Menu array representing the meal of which to calculate the cost. Return an int representing the cost of the meal. orderCost Calculate the cost of the meal. (The price of the given Menu element is calculated as the product of its index in the meal and the index of that Menu as it was enumerated in the Menu enum. Takes in an array of Menu arrays representing the order of which to calculate the cost. Return an int representing the cost of the order. The cost of the order is the sum of the costs of each meal in the order.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Random Class and its operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education