Question: Write a C++ program that sums the digits of the product of two positive integers until the sum becomes a single digit. For example Input:
Write a C++ program that sums the digits of the product of two positive integers until the sum becomes a single digit.
For example
Input: 12, 32
Output: 6
Because: 12 x 32 = 384, 3 + 8 + 4 = 15 -> 1+5 = 6
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
