Assignemnt #73 and Baby Calculator

Code

///Name: Ben Borglin
///Period: 6
///Program name: Baby Calculator
///file name: BabyCalculator.java
///Date Finsihed: 10/26/15

import java.util.Scanner;

public class BabyCalculator
{
	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
			{
				System.out.println("Undefined operator: '" + op + "'.");
				c = 0;
			}

			System.out.println(c);

		} while (c != 0);
        System.out.println("Later dood.");
	}
}




 
    

Picture of the output

Assignment 73