B. PERFORMANCE TASK - Simple Calculator
B. PERFORMANCE TASK - Simple Calculator
Scanner;
char operation;
operation = sc.next().charAt(0);
num1 = sc.nextInt();
num2 = sc.nextInt();
if(operation == '+'){
}
else if(operation == '*'){