Assignment #107 Baby Calculator

Code

    /// Name: DeeJay Cerezo
/// Period: 7
/// Program Name: Baby Calculator Review
/// File Name: BabyCalc.java
/// Date Finished: 3/31/2016


import java.util.Scanner;

public class BabyCalcRev
{
	public static void main( String[] args )
	{
		Scanner keyboard = new Scanner(System.in);

		double a, b, c;
		String op;

		do
		{
			System.out.print("> ");
			a  = keyboard.nextDouble();
			op = keyboard.next();
			b  = keyboard.nextDouble();

			if ( op.equals("+") )
				c = a + b;
            else if ( op.equals("-") )
				c = a - b;
            else if ( op.equals("*") )
				c = a * b;
            else if ( op.equals("/") )
				c = a / b;
			else
			{
				System.out.println("Undefined operator: '" + op + "'.");
				c = 0;
			}
            if ( a == 0 )
            { System.out.println( "Bye."); }

			System.out.println(c);

		} while ( true );
	}
}



    
    

Picture of the output

Assignment