Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.69K
1 Posted Topic
#include <iostream> using namespace std; void calculator() { int a,b,sum; char oper; cout << "Enter the number:"; cin >> a; cout << "Enter the operator like (+,-,*,/,%):"; cin >> oper; cout << "Enter the number:"; cin >> b; if (oper == '+') { sum = a + b; cout <<"Answer: …
The End.