Computer Science, asked by mehul2403, 9 months ago

Write a c++ program for multiplication of two variables var a=5 var b=6​

Answers

Answered by Anonymous
1

#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;

}

Answered by rachita07
4

Answer:

Use int main instead of void main to clear the error

Similar questions