Tuesday, June 17, 2014
c++ program to multiply two integers
#include<conio.h>
using namespace std;
int main( )
{
int a;
int b;
cout<<"please enter first integer for multiplication";
cin>>a;
cout<<"please enter second integer for multiplication";
cin>>b;
cout<<"your sum is "<<a*b<<endl;
return 0;
getch();
}
Subscribe to:
Post Comments
(
Atom
)
No comments :
Post a Comment