Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
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
Creating A Basic Calculator
WhatsApp
Shobana J
Aug 03
2016
607
0
0
basiccal.zip
#include < iostream >
using
namespace
std;
int
main()
{
int
a;
int
b;
int
sum;
cout <<
"enter a no hoss!\n"
;
cin >> a;
cout <<
"enter another no \n"
;
cin >> b;
sum = a + b;
cout <<
"The sum of those no is "
<< sum << endl;
return
0;
}
Basic Calculator
C
Up Next
Creating A Basic Calculator