C++ Program to Multiply two Numbers
In this example, we will learn to find ASCII value of a character using C++ cout statement.
Program to Multiply two Numbers
In this program, user is asked to enter two numbers (floating point numbers). Then, the product of those two numbers is stored in a variable and displayed on the screen.
Example: Program to Multiply two Floating-Point Numbers
#include <iostream>
using namespace std;
int main()
{
double firstNumber, secondNumber, productOfTwoNumbers;
cout << "Enter two numbers: ";
// Stores two floating point numbers in variable
firstNumber and secondNumber respectively
cin >> firstNumber >> secondNumber;
// Performs multiplication and stores the result in variable
productOfTwoNumbers
productOfTwoNumbers = firstNumber * secondNumber;
cout << "Product = " << productOfTwoNumbers;
return 0;
}
Output
Enter two numbers: 5.6 2.4 Product = 13.44
Working of above Program
In this program, user is asked to enter two numbers. These two numbers entered by the user is stored in variable firstNumber and secondNumber respectively.
Then, the product of firstNumber and secondNumber is evaluated and the result is stored in variable productOfTwoNumbers. Finally, the productOfTwoNumbers is displayed on the screen.
Next Example
We hope that this Example helped you develop better understanding of the concept of Multiply two Numbers in C++.
Keep Learning : )
In the next Example, we will learn about C++ Check Whether a Number is Even or Odd
.