Computer Science, asked by priyankadimri87, 3 months ago

A. Write a program in python to find out the product of three numbers a, b, and c entered by the user at run time with output

Answers

Answered by mukherjeearjun2003
1

Answer:

#include<iostream>

using namespace std;

int main()

{

int a,b,c;

cout<<"enter the value of a:";

cin>>a;

cout<<"enter the value of b:";

cin>>b;

cout<<"enter the value of c:";

cin>>c;

cout<<"product is:"<<(a*b*c);

return 0;

}

pls Mark me as brainliest

Answered by anupriya40
0

Answer:

Write a program in python to product of any three numbers?

Explanation:

i also search

Similar questions