Computer Science, asked by c1hn1iraheeghs, 1 year ago

Way to Write a Program to Input 2 Numbers of the User
How to write a program to input 2 numbers of the user and find out their product?

Answers

Answered by NEECO
0
In C++
#include<iostream.h>void main(){ int num1,num2,product;cin>>num1;cin>>num2;product=num1*num2;cout<<product;
}
Similar questions