// Zorah Fung // June 25th, 2014 // Prints out a recipe for delicious cookies public class BakeCookies { public static void main(String[] args) { mixIngredients(); bakeCookies(); bakeCookies(); bakeCookies(); frostCookies(); } // Prints instructions to make cookie batter public static void mixIngredients() { System.out.println("Mix the dry ingredients."); System.out.println("Cream the butter and sugar."); System.out.println("Beat in the eggs."); System.out.println("Stir in the dry ingredients."); System.out.println(); } // Prints instructions to bake cookies public static void bakeCookies() { System.out.println("Set the oven temperature to 350 degrees."); System.out.println("Set the timer for 20 minutes."); System.out.println("Place the cookies into the oven."); System.out.println("Allow the cookies to bake."); } // Prints instructions to frost and decorate cookies public static void frostCookies() { System.out.println("Mix the ingredients for the frosting."); System.out.println("Spread frosting and sprinkles onto the cookies."); System.out.println(); } }