public class Trio { private Sandwich sandwich; private Salad salad; private Drink drink; // Part B: write the getPrice() method for the Trio class public double getPrice() { // Price of a trio (combo meal) is the sum of the 2 highest priced // items in the trio // // Compute the price of a trio and return it } // Constructor public Trio(Sandwich s1, Salad s2, Drink d) { sandwich = s1; salad = s2; drink = d; } // toString(): converts a trio object to a String public String toString() { return sandwich.toString() + " " + salad.toString() + " " + drink.toString(); } }