Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Simple Calculator Using Switch Statement
WhatsApp
Shobana J
8y
33.5
k
0
3
25
Blog
calc.zip
Introduction
In this blog, I am going to explain how to do simple calculations by using a calculator.
Software Requirements
Turbo C++ or C.
Programming
#include < stdio.h >
int
main()
{
char
operator;
double
firstNumber, secondNumber;
printf(
"Enter an operator (+, -, *,): "
);
scanf(
"%c"
, & operator);
printf(
"Enter two operands: "
);
scanf(
"%lf %lf"
, & firstNumber, & secondNumber);
switch
(operator)
{
case
'+'
:
printf(
"%.1lf + %.1lf = %.1lf"
, firstNumber, secondNumber, firstNumber + secondNumber);
break
;
case
'-'
:
printf(
"%.1lf - %.1lf = %.1lf"
, firstNumber, secondNumber, firstNumber - secondNumber);
break
;
case
'*'
:
printf(
"%.1lf * %.1lf = %.1lf"
, firstNumber, secondNumber, firstNumber * secondNumber);
break
;
case
'/'
:
printf(
"%.1lf / %.1lf = %.1lf"
, firstNumber, secondNumber, firstNumber / firstNumber);
break
;
default
:
printf(
"Error! operator is not correct"
);
}
return
0;
}
Explanation
By the programming given above, the calculations of addition, subtraction, multiplication and division can be done and explained in a simple manner.
Output
Conclusion:
Thus the simple calculator can get created successfully.
Simple Calculator
Switch Statement
C
Up Next
Concatenate Two Strings Using Binary Operator Overloading
Ebook Download
View all
Printing in C# Made Easy
Read by 22.5k people
Download Now!
Learn
View all
Membership not found