Write a C++ find subtraction of two number
#include<iostream>
using namespace std;
int main()
{
int i,j,sub;
cout<<"Enter the first number";
cin>>i;
cout<<"Enter the second number";
cin>>j;
sub=i-j;
cout<<"Subtraction : "<<sub;
return 0;
}
👉
Write a C++ find subtraction of two number
#include<iostream>
using namespace std;
int main()
{
int i,j,sub;
cout<<"Enter the first number";
cin>>i;
cout<<"Enter the second number";
cin>>j;
sub=i-j;
cout<<"Subtraction : "<<sub;
return 0;
}
👉