public static void main(String[] args) {
int x = Integer.parseInt(JOptionPane.showInputDialog("Digite um número: "));
String calc = JOptionPane.showInputDialog("Digite a opção: "+
"\n+ Soma"+
"\n- Subtração"+
"\n/ Divisão"+
"\n* Multiplicação");
int y = Integer.parseInt(JOptionPane.showInputDialog("Digite um número: "));
float tot;
switch(calc.hashCode()) {
case '+':
tot=x+y;
JOptionPane.showMessageDialog(null, x+ " + " +y+ " = " +tot);
break;
case '-':
tot=x-y;
JOptionPane.showMessageDialog(null, x+ " - " +y+ " = " +tot);
break;
case '/':
tot=x/y;
JOptionPane.showMessageDialog(null, x+ " / " +y+ " = " +tot);
break;
case '*':
tot=x*y;
JOptionPane.showMessageDialog(null, x+ " * " +y+ " = " +tot);
break;
default:
JOptionPane.showConfirmDialog(null, "Opção inválida!!!");
break;
}
}
0 comentários:
Postar um comentário