Skip to content

Added SimpleCalculator #6463

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
import java.util.Scanner;

class public SimpleCalculator {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);

System.out.println("""
===== Simple Calculator =====
1. Addition
2. Subtraction
3. Multiplication
4. Division
5. Exit
Enter your choice: """);

int choice = in.nextInt();

switch (choice) {
case 1 : performOperation(in, '+');
case 2 : performOperation(in, '-');
case 3 : performOperation(in, '*');
case 4 : performOperation(in, '/');
case 5 : System.out.println("Exiting...");
default : System.out.println("Invalid choice! Please select between 1-5.");
}

in.close();
}

private static void performOperation(Scanner in, char operator) {
System.out.print("Enter 2 numbers: ");
int a = in.nextInt();
int b = in.nextInt();
int result = 0;

switch (operator) {
case '+' : result = a + b;
case '-' : result = a - b;
case '*' : result = a * b;
case '/' : {
if (b != 0) {
result = a / b;
} else {
System.out.println("Error: Division by zero!");
return;
}
}
}
System.out.println("Result: " + result);
}
}
Loading