ExpressionsThing.java
package Exprestions;

public class ExpressionsThing {

    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 = (3 * 2);
        System.out.println( "four = " + four);
        Double five = (.5 * 55);
        System.out.println( "five = " + five);
        double six = (.333333333333333 * 65);
        System.out.println( "six = " + six);
        double seven = ( six + five);
        System.out.println("seven = " + seven);
        double pi = 3.14;
        double eight = (pi * ( 11.3 * 11.3));
        System.out.println( "eight = " + eight);
        double nine = (27.7 * 27.7);
        System.out.println( "nine = " + nine);
        double ten = ((nine + eight)/2);
        System.out.println( "ten = " + ten);
        double Eleven = (243.5 * .17);
        System.out.println( "Eleven = " + Eleven);
        int twelve = (3 / 3);
        System.out.println( "twelve = " + twelve);
        int thirteen = (7 - (2 + 4));
        System.out.println( "thirteen= " + thirteen);
        int fourteen = (9 - ( 1 + (7 - 3)));
        System.out.println( "fourteen = " + fourteen);
        int fifteen = ((((6 * 8) / 4) - 2) / 2);
        System.out.println( "fifteen = " + fifteen);
        }

    }