15/11/2015

C++ Program To perform All Arithmetic Operations Using Functions

Problem :- Write A C++ Program To Perform All Arithmetic Operations Using Functions

Logic :- You need to enter two number and pass in All function . If you get any problem then Comment ,or if you don't know the function then i strongly recommend this program C++ Program To Fibonacci Series Using Functions 

Solution :-

#include<iostream>
using namespace std;

int sum(int,int);
int sub(int,int);
int mul(int,int);
int div(int,int);
int rem;

int main()
{
//By-Ghanendra Yadav
int a,b,m,su,s,d;

cout<<"Enter Two Numbers : \n";
cin>>a>>b;

s=sum(a,b);
su=sub(a,b);
m=mul(a,b);
d=div(a,b);

cout<<"\nSum : = "<<s<<"\nSubtraction : = "<<su<<endl;
cout<<"\nMultiplication : = "<<m<<"\n Division : = "<<d<<endl;
return 0;
}

int sum(int a,int b)
{
rem=a+b;
return(rem);
}

int sub(int a,int b)
{
rem=a-b;
return(rem);
}

int mul(int a,int b)
{
rem=a*b;
return(rem);
}

int div(int a,int b)
{
rem=a/b;
return(rem);
}

Output:-

C++ Program To perform All Arithmetic Operations Using Functions

Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

0 Comments: