// CSE 142, Autumn 2010, Jessica Miller // This program uses demonstrates the use of expressions in a println // and the different between printing the result of an expression versus // printing the expression as a String. public class Expressions { public static void main(String[] args) { System.out.println(1 + 4 * 5); System.out.println("1 + 4 * 5"); } }