write afunction int mul(int, int) which takes two numbers and do multiplication by repeated addition. write aprogram to inter tow numbers and print the product
1
Expert's answer
2012-12-27T09:23:17-0500
//#include <stdafx> #include <iostream> using namespace std;
void mul(int a,int b) { double V=0;
& V=a*b;
cout << "a*b= "<< V<< endl; }
int main() { int digit; cout << "Enter f and b: "; int a,b; cin >> a; & cin >> b;
Comments
Leave a comment