الصفحة الرئيسيةc plus plus C++Program to Multiply Two Numbers أغسطس 02, 2021 0 #include using namespace std; int main() { double num1, num2, product; cout << "Enter two numbers: "; // stores two floating point numbers in num1 and num2 respectively cin >> num1 >> num2; // performs multiplication and stores the result in product variable product = num1 * num2; cout << "Product = " << product; return 0; } Tags: c plus plus Facebook Twitter