1 /* 2 * 3 */ 4 5 package expressions; 6 7 public class ExpressionsThing { 8 9 public static void main(String [] args) { 10 11 double one = 3.14 * 5 + 5; 12 System.out.println("one = " + one); 13 double two = 3.14 * ( 5 + 5 ); 14 System.out.println("two = " + two); 15 double three = ( 3.14 * ( 5 + 5 ) ); 16 System.out.println("three = " + three); 17 int four = (5 * 6); 18 System.out.println("four = " + four); 19 double five = ( 0.5 * 55 ); 20 System.out.println("five = " + five); 21 double six = ( (1.0 / 3.0 ) * 65 ); 22 System.out.println("six = " + six); 23 double seven = ( five + six ); 24 System.out.println("seven = " + seven); 25 double eight = 3.14 * ( 11.3 ); 26 System.out.println("eight = " + eight); 27 double nine = (27.7 * 27.7); 28 System.out.println("nine = " + nine); 29 double ten = ((eight + nine) /2); 30 System.out.println("ten = " + ten); 31 double eleven = (0.17 * 243.5); 32 System.out.println("eleven = " + eleven); 33 int twelve = ( 3 / 3 ); 34 System.out.println("twelve = " + twelve); 35 int thirteen = (7 - (4 + 2)); 36 System.out.println("thirteen = " + thirteen); 37 int fourteen = ((9 - 1) - (7 - 3)); 38 System.out.println("fourteen = " + fourteen); 39 int fifteen = ((8 - 6) + (4 + 2) /2 ); 40 System.out.println("fifteen = " + fifteen); 41 } 42 43 } 44