

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Maximum of sum and product of digits until number is reduced to a single digit in C++
In this tutorial, we will be discussing a program to find maximum of sum and product of digits until number is reduced to a single digit
For this we will be provided with a random number. Our task is to find and print out the maximum of sum and product of the digits of the given number until it coverts to a single digit
Example
#include<bits/stdc++.h> using namespace std; //converting number to single digit by adding long repeatedSum(long n) { if (n == 0) return 0; return (n % 9 == 0) ? 9 : (n % 9); } //converting number to single digit by multiplying long repeatedProduct(long n) { long prod = 1; while (n > 0 || prod > 9) { if (n == 0) { n = prod; prod = 1; } prod *= n % 10; n /= 10; } return prod; } //finding maximum long maxSumProduct(long N) { if (N < 10) return N; return max(repeatedSum(N), repeatedProduct(N)); } int main() { long n = 631; cout << maxSumProduct(n)<<endl; return 0; }
Output
8
- Related Questions & Answers
- Finding sum of digits of a number until sum becomes single digit in C++
- C++ program to find sum of digits of a number until sum becomes single digit
- Program to find sum of digits until it is one digit number in Python
- Summing up all the digits of a number until the sum is one digit in JavaScript
- Maximum sum and product of the M consecutive digits in a number in C++
- Digit sum upto a number of digits of a number in JavaScript
- Difference between product and sum of digits of a number in JavaScript
- Product sum difference of digits of a number in JavaScript
- C program to find sum of digits of a five digit number
- Sum up a number until it becomes one digit - JavaScript
- Sum up a number until it becomes 1 digit JavaScript
- Reduce sum of digits recursively down to a one-digit number JavaScript
- C Program to sum the digits of a given number in single statement
- Minimum number of single digit primes required whose sum is equal to N in C++
- Recursive product of all digits of a number - JavaScript
Advertisements