C++ Exercises: Calculate product of digits of any number
C++ For Loop: Exercise-58 with Solution
Write a program in C++ to calculate the product of the digits of any number.
Pictorial Presentation:

Sample Solution:
C++ Code :
#include <iostream>
using namespace std;
int main()
{
int num1, num2, r, pro=1,i;
cout << "\n\n Find the product of digits of a given number:\n";
cout << "--------------------------------------------------\n";
cout << " Input a number: ";
cin >> num1;
num2 = num1;
for(i=num1;i>0;i=i/10)
{
r = i % 10;
pro = pro*r;
}
cout << " The product of digits of " << num2 << " is: " << pro << endl;
}
Sample Output:
Find the product of digits of a given number: -------------------------------------------------- Input a number: 3456 The product of digits of 3456 is: 360
Flowchart:

C++ Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a program in C++ to find the sum of first and last digit of a number.
Next: Write a program in C++ to find the frequency of each digit in a given integer.
What is the difficulty level of this exercise?
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join