This is a simple and easy c++ program to multiply two numbers entered by the user while executing this program. I assume you have basic knowledge of c++ programming language.
In the below program, we have used three variables x, y, and multiplication. x and y to hold the value of entered by the user and then multiply using the multiply operator (x) and store into multiple variables.
Copy the below program and execute it with the help of CPP compiler.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #include <iostream> using namespace std; int main() { int x, y, multiplication; cout << "Enter two integers for multiplication: "; cin >> x >> y; // stored result in third variable multiplication = x * y; // Prints multiplication value cout << x << " * " << y << " = " << multiplication; return 0; } |
Enter two integers for multiplication: 15
10
15 * 10 = 150
Article Tags: c program, c programs, how to multiply two numbers using c++, multiply 2 numbers, multiplying two numbers using c++, two number multiplication in c++