Answer:
// C++ Program to Multiply Two Numbers Using Function
#include <iostream>
using namespace std;
// Function declaration
int Multiply(int x, int y);
int main(){
int num1, num2, product;
// Taking input from the user
cout << "Enter the first number: ";
cin >> num1;
cout << "Enter the second number: ";
cin >> num2;
// Calling out user-defined function
product = Multiply(num1, num2);
// Displaying result
cout << "The Product of two numbers is: " << product << endl;
return 0;
}
for (int i=0;i<3;i++)
{
// Function Definition
Multiply(int x, int y)
}
Step-by-step explanation:
so lets get started doing in copy ok mark it good