// Short program to print out steps to make a double batch of cookies public class BakeCookies { public static void main(String[] args) { makeBatter(); bakeCookies(); bakeCookies(); decorate(); } // prints out how to make the batter for the cookies public static void makeBatter() { 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 out instructions for baking the cookies public static void bakeCookies() { System.out.println("Set the oven temperature to 350 degrees."); System.out.println("Set the timer for 8 minutes."); System.out.println("Place the cookies into the oven."); System.out.println("Allow the cookies to bake."); System.out.println(); } // prints out instructions for decorating the cookies public static void decorate() { System.out.println("Mix the ingredients for the frosting."); System.out.println("Spread frosting and sprinkles onto the cookies."); System.out.println(); } }