package expressions; public class expressions { public static void main(String[] args) { double one = 3.14 * 5 + 5; System.out.println("one = " + one); double two = 3.14 * ( 5 + 5 ); System.out.println("two = " + two); double three = ( 3.14 * ( 5 + 5 ) ); System.out.println("three = " + three); int four = 30; System.out.println("four = " + four); double five = ( 55.0/2); System.out.println("five = " + five); double six = ( 65.00/3); System.out.println("six =" + six); double seven = (five + six); System.out.println("seven = " + seven); double eight = ( 3.14 * 11.3 * 11.3); System.out.println("eight = " + eight); double nine = ( 27.7 * 27.7); System.out.println("nine = " + nine); } }