-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patht2
42 lines (33 loc) · 1.13 KB
/
t2
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
38
39
40
41
42
import java.util.Scanner;
public class Calculator {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter first number: ");
double num1 = scanner.nextDouble();
System.out.print("Enter operator (+, -, *, /): ");
char operator = scanner.next().charAt(0);
System.out.print("Enter second number: ");
double num2 = scanner.nextDouble();
double result = 0.0;
switch(operator) {
case '+':
result = num1 + num2;
break;
case '-':
result = num1 - num2;
break;
case '*':
result = num1 * num2;
break;
case '/':
result = (num2 != 0) ? num1 / num2 : Double.NaN;
break;
default:
System.out.println("Error: Invalid operator!");
scanner.close();
return;
}
System.out.println("Result: " + result);
scanner.close();
}
}