-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculadora.java
37 lines (33 loc) · 1.03 KB
/
calculadora.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* Laboratório de Programação 2 - Lab 1
*
* @author Mariane Silva de Carvalho - 119210450
*/
import java.util.Scanner;
public class calculadora {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String simbolo = sc.nextLine();
if (!"+-*/".contains(simbolo) || simbolo.length() > 1) {
System.out.println("ENTRADA INVALIDA");
} else {
double num1 = sc.nextDouble();
double num2 = sc.nextDouble();
if (simbolo.equals("+")) {
double resultado = num1 + num2;
System.out.println("RESULTADO: " + resultado);
} else if (simbolo.equals("-")) {
double resultado = num1 - num2;
System.out.println("RESULTADO: " + resultado);
} else if (simbolo.equals("*")) {
double resultado = num1 * num2;
System.out.println("RESULTADO: " + resultado);
} else if (simbolo.equals("/") && num2 != 0) {
double resultado = num1 / num2;
System.out.println("RESULTADO: " + resultado);
} else if (simbolo.equals("/") && num2 == 0) {
System.out.println("ERRO");
}
}
}
}