/*-------------------------------------------------------------------- Elizabeth Sklar 25 Sep 2001 CS1007 Homework #1 Solution file name: hw1eis2003.java This program prints out on the screen a recipe for boiled water. --------------------------------------------------------------------*/ public class hw1eis2003 { public static void main ( String[] args ) { System.out.println( "Recipe for Boiled Water" ); System.out.println( "-----------------------" ); System.out.println(); System.out.println( "Ingredients" ); System.out.println( "-----------" ); System.out.println( "2 C water" ); System.out.println( "1 kettle" ); System.out.println(); System.out.println( "Instructions" ); System.out.println( "------------" ); System.out.println( "1. Pour the water into the kettle." ); System.out.println( "2. Set the kettle on the stove." ); System.out.println( "3. Turn the stove on \"high\"." ); System.out.println( "4. It is done when the water is bubbling and steaming," ); System.out.println( " so when that happens, turn off the stove." ); System.exit( 0 ); } // end main } // end class hw1eis2003