Answer:
OrderList.java
- public class OrderList {
- private double cost[];
- private int num_of_items;
-
- public OrderList(){
- cost = new double[100];
- }
-
- public double total_cost(){
- double total = 0;
- for(int i=0; i < num_of_items; i++){
- total += cost[i];
- }
- return total;
- }
- }
Main.java
- public class Main {
- public static void main(String[] args) {
- OrderList sample = new OrderList();
- double totalCost = sample.total_cost();
- }
- }
Step-by-step explanation:
Firstly, define a class OrderList with two private attributes, cost and num_of_items (Line 1-3). In the constructor, initialize the cost attribute with a double type array with size 100. Next, create another method total_cost() to calculate the total cost of items (Line 9-15). To implement the total_cost member function, create an OrderList instance and use that instance to call the total_cost() and assign it to totalCost variable.