Posts
 
Reputation
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
~46.5K People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for Srinivas0

#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: …

Member Avatar for Hamza_53
2
46K

The End.