-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasicCalculator.java
More file actions
96 lines (86 loc) · 2.06 KB
/
BasicCalculator.java
File metadata and controls
96 lines (86 loc) · 2.06 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import java.util.InputMismatchException;
import java.util.Scanner;
public class BasicCalculator
{
public static double add(double a, double b)
{
return a+b;
}
public static double subtract(double a, double b)
{
return a-b;
}
public static double multiply(double a, double b)
{
return a*b;
}
public static double divide(double a, double b)
{
if(b==0)
{
throw new ArithmeticException("Error: Division by zero is not allowed! ");
}
return a/b;
}
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
boolean keepRunning = true;
System.out.println("=======Welcome to Basic Calculator=========");
while(keepRunning)
{
try
{
System.out.print("Enter first number: ");
double num1 = sc.nextDouble();
System.out.print("Enter second number: ");
double num2 = sc.nextDouble();
System.out.println("\nChoose Operation: ");
System.out.println("1. Addition (+)");
System.out.println("2. Subtraction (-)");
System.out.println("3. Multiplication (*)");
System.out.println("4. Division (/)");
System.out.println("5. Exit");
System.out.print("Enter your choice: ");
int choice = sc.nextInt();
double result = 0;
switch(choice)
{
case 1:
result = add(num1, num2);
System.out.println("Result = " + result);
break;
case 2:
result = subtract(num1, num2);
System.out.println("Result = " + result);
break;
case 3:
result = multiply(num1, num2);
System.out.println("Result = " + result);
break;
case 4:
try
{
result = divide(num1, num2);
System.out.println("Result = " + result);
}catch(ArithmeticException e)
{
System.out.println(e.getMessage());
}
break;
case 5:
keepRunning = false;
System.out.println("Exiting... Thank you for using the calculator!");
break;
default:
System.out.println("Invalid choice! Please select between 1-5.");
}
}catch(InputMismatchException e)
{
System.out.println("Invalid input! Please enter number only.");
sc.nextLine();
}
}
sc.close();
}
}