-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEXP-5(D).C
34 lines (29 loc) · 939 Bytes
/
EXP-5(D).C
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
#include <stdio.h>
int main() {
char operator;
double num1, num2;
printf("Enter an operator (+, -, *, /): ");
scanf(" %c", &operator); // Added a space before %c to consume any leading whitespace
printf("Enter two numbers: ");
scanf("%lf %lf", &num1, &num2);
switch (operator){
case '+':
printf("%.2lf + %.2lf = %.2lf", num1, num2, num1 + num2);
break;
case '-':
printf("%.2lf - %.2lf = %.2lf", num1, num2, num1 - num2);
break;
case '*':
printf("%.2lf * %.2lf = %.2lf", num1, num2, num1 * num2);
break;
case '/':
if (num2 != 0)
printf("%.2lf / %.2lf = %.2lf", num1, num2, num1 / num2);
else
printf("Error: Division by zero is not allowed");
break;
default:
printf("Error: Invalid operator");
}
return 0;
}