Projects C++ Program to Multiply two Numbers

C++ Program to Multiply two Numbers

56
738

C++ 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.

Table of Contents

Programe :

#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: 3.4
5.5
Product = 18.7

56 COMMENTS

LEAVE A REPLY

Please enter your comment!
Please enter your name here