Assignemnt #17: Mathematical Operations

Code

    /// Name: Kelsey Lieberman
    /// Period 5
    /// Program Name: MathOperations
    /// File Name: MathOperations.java
    /// Date Finished: 9/22/2015
    
public class MathOperations
{
    public static void main(String[] args)
    {
        int a, b, c, d, e, f, g;
        double x, y, z;
        String one, two, both;
        
        a = 10;
        b = 27;
        System.out.println( "a is " + a + ", b is " + b );
        c = a + b;
        System.out.println( "a+b is " + c );
        d = a - b;
        System.out.println( "a-b is " + d );
        e = a + b * 3;
        System.out.println( "a+b*3 is " + e );
        f = b / 2;
        System.out.println( "b/2 is " + f );
        g = b % 10;
        System.out.println( "b%10 is " + g );
        x = 1.1;
        y = x*x;
        z = b / 2;
        System.out.println( "\nx is " + x + "\nx*x is " + y + "\nb/2 is " + z + "\n");
        
        one = "dogg";
        two = "house";
        both = one + two;
        System.out.println( both );
    }
}

    

Picture of the output

Assignment 17