-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcalculator.java
34 lines (33 loc) · 923 Bytes
/
calculator.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
import java.util.Scanner;
class calculator
{
public static void main(String[] args)
{
Scanner reader = new Scanner(System.in);
System.out.print("Enter two numbers: ");
double a = reader.nextDouble();
double b = reader.nextDouble();
System.out.print("Enter an operator (+, -, *, /): ");
char ch = reader.next().charAt(0);
double result;
switch(ch)
{
case '+':
result = a + b;
break;
case '-':
result = a - b;
break;
case '*':
result = a * b;
break;
case '/':
result = a / b;
break;
default:
System.out.printf("ch is not correct");
return;
}
System.out.printf("%.1f %c %.1f = %.1f", a, ch, b, result);
}
}