Ejercicio
Calculadora - switch
Objetivo
Escriba un programa en java que le pida al usuario dos números y una operación para realizar con ellos (+,-,*,x,/) y muestre el resultado de esa operación, como en este ejemplo:
Introduzca el primer número: 5
Introducir operación: +
Introduce el segundo número: 7
5+7=12
Nota: DEBE usar "switch", no "if"
Código de Ejemplo
import java.util.*;
public class Main
{
public static void main(String[] args)
{
int a, b;
char operation;
System.out.print("Enter first number: ");
a = Integer.parseInt(new Scanner(System.in).nextLine());
System.out.print("Enter operation: ");
operation = (char)new Scanner(System.in).nextLine();
System.out.print("Enter second number: ");
b = Integer.parseInt(new Scanner(System.in).nextLine());
switch (operation)
{
case '+':
System.out.printf("%1$s + %2$s = %3$s" + "\r\n", a, b, a + b);
break;
case '-':
System.out.printf("%1$s - %2$s = %3$s" + "\r\n", a, b, a - b);
break;
case 'x':
case '*':
System.out.printf("%1$s * %2$s = %3$s" + "\r\n", a, b, a * b);
break;
case '/':
System.out.printf("%1$s / %2$s = %3$s" + "\r\n", a, b, a / b);
break;
default:
System.out.println("Wrong Character");
break;
}
}
}