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