"c++" ask for two numbers and then the summation and multiplication of both code example
Example 1: add two numbers in c++
#include <iostream>
using namespace std;
int addition(int a,int b);
int main()
{
int a,b;
int add;
cout<<"Enter first number: ";
cin>>a;
cout<<"Enter second number: ";
cin>>b;
add=addition(a,b);
cout<<"Addition is: "<<add<<endl;
return 0;
}
int addition(int a,int b)
{
return (a+b);
}
Example 2: sum of two numbers c++
#include<iostream>
using namespace std;
int main()
{
double number1,number2;
double sum0;
sum=number1+number2;
cout<<sum;
}