WAP To Print Multiplication Of Two Numbers
#include<iostream.h>
#include<conio.h>
Void main()
{ clrscr();
Int value 1,value 2,multi;
cout<<”Enter the first value”;
cin>>vaue 1;
cout<<”Enter the second value”;
cin>>value 2;
multi=value 1*value 2;
cout<<”The sum of given values is”;
cout<<multi;
getch();
}
Comments
Post a Comment