ExpressionsThings.java
1    
2    /* 
3     * This program will present you with the opportunities to explore the construction of arithmetic expressions of some simply problem solving. . 
4     * You will have to place a square in a circle by carefully using the methods of inscribing and circumscribing. 
5     */
6    
7    
8    
9    package expressions;
10   
11   public class ExpressionsThings {
12   
13   
14       public static void main(String[] args) {
15           double one = 3.14 * 5 + 5;
16           System.out.println("one = " + one);
17           double two = 3.14 * (5 + 5);
18           System.out.println("two = " + two);
19           double three = (3.14 * (5 + 5));
20           System.out.println("three = " + three);
21           int four = (2 * 3);
22           System.out.println("four = " + four);
23           double five = ((55) / (2));
24           System.out.println("five = " + five);
25           double six = ((65) / (3));
26           System.out.println("six = " + six);
27           double seven = ((55) / (2)) + ((65) / (3));
28           System.out.println("seven = " + seven);
29           double eight = (3.14 * (11.3 * 11.3));
30           System.out.println("eight = " + eight);
31           double nine = (27.7 * 27.7);
32           System.out.println("nine = " +nine);
33           double ten = (((3.14 * (11.3 * 11.3)) + (27.7 * 27.7)) / (2));
34           System.out.println(" ten =" + ten);
35           double eleven = (243.5 * 0.17);
36           System.out.println("eleven = " + eleven);
37           int twelve = (3/3);
38           System.out.println(" twelve = " + twelve);
39           int thirteen = ((4 * 2) - 7);
40           System.out.println("thirteen = " + thirteen);
41           int fourteen = (7 - ((9 * 1)/3));
42           System.out.println("fourteen = " + fourteen);
43           int fifteen = (((8-6) + 4)-(2/2));
44           System.out.println(" fifteen = " + fifteen);
45   
46   
47   
48       }
49   }