ExpressionsThing.java
1    /* 
2     This program will explore the construction of arithmetic expressions by using some very simple problem-solving. 
3     */
4    
5    package expressions;
6    
7    import javax.crypto.spec.PSource;
8    
9    public class ExpressionsThing {
10       public static void main(String[] args){
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 = (.5 * 55);
20           System.out.println("five = " + five);
21           double six = (65 * .33);
22           System.out.println("six = " + six);
23           double seven = (five + six);
24           System.out.println("seven = " + seven);
25           double eight = (3.14 * (11.3 * 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);
30           System.out.println("ten = " + ten);
31           double eleven = (.17 * 243.5);
32           System.out.println("eleven = " + eleven);
33           int twelve = (3/3);
34           System.out.println("twelve = " + twelve);
35           int thirteen = ((4*2)-7);
36           System.out.println("thirteen = " + thirteen);
37           int fourteen = (((9*3)/7)+1);
38           System.out.println("fourteen = " + fourteen);
39           int fifteen = ((2+4) - ((2+6)/8));
40           System.out.println("fifteen = " + fifteen);
41   
42       }
43   
44   }
45