// Helene Martin, CSE 142 // Expressions can include any number of operators and operands. // A variable can store the result of evaluating an expression. public class Expressions { public static void main(String[] args) { System.out.println("8 * 2"); System.out.println(9 / 2); int age; age = 18; System.out.println("Age: " + age); // can't date younger than this age System.out.println("Minimum dating age: " + (age / 2 + 7)); } }