// Miya Natsuhara // 07-05-2019 // CSE142 // TA: Grace Hopper // Prints out confirmation of your orders of a pepperoni pizza, a sausage pizza, and a veggie pizza /* DEVELOPMENT NOTES: ((Note: this is not something you should include in your own programs; this is included here to aid in your understanding and to provide additional context for the program.)) We can make parameters of any type, including Strings! Also remember that when calling a method that accepts a parameter of a certain type, we can pass in any expression that *evaluates* to that type! Below, we make a String variable storing "veggie", and can use that variable name when calling orderPizza, because the value stored in that variable is of type String! */ public class Pizza { public static void main(String[] args) { orderPizza("pepperoni"); orderPizza("sausage"); String veg = "veggie"; orderPizza(veggie); } // Prints out a confirmation of your order for a pizza with the given topping. // String topping: the requested topping for the pizza public static void orderPizza(String topping) { System.out.println("Welcome to Little Round Papa Pagliacci's DominoHut"); System.out.println("Thank you for ordering a " + topping + " pizza"); System.out.println(); } }