ExpressionsThing.java
package expressions;

import java.sql.SQLOutput;

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 = (2 * 3);
        System.out.println("Four = " + four);

        double five = (55/2);
        System.out.println("Five = " + five);

        double six = (65/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);

        double ten = ((eight + nine) / 2);
        System.out.println("Ten = " + ten);

        double eleven = (.17 * 243.5);
        System.out.println("Eleven = " + eleven);

        int twelve = (3/3);
        System.out.println("Twelve = " + twelve);

        int thirteen = ((4 * 2) - 7);
        System.out.println("Thirteen = " + thirteen);

        int fourteen = (((7+9)/3)-1);
        System.out.println("Fourteen = " + fourteen);

        int fifteen = ((((4*8)/6)*2)/2);
        System.out.println("Fifteen = " + fifteen);


    }


}