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 :-
Output:-
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:-
0 Comments: