Assignemnt #74

Code

/// Name: Connor Siri
/// Period: 7
/// Program Name: Baby
/// File Name: Baby.java
/// Date Finished: 11/10/2015

import java.util.Random;
import java.util.Scanner;

public class Baby
{
	public static void main( String[] args )
	{
		Scanner keyboard = new Scanner(System.in);
        Random r = new Random();
		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;
			}

			System.out.println(c);

		} while ( a != 0 );
	}
}




    

Picture of the output

Assignment14.html