Given a number N, product(N) is the product of the digits of
N. We can then form a sequence N, product(N),
product(product(N))… For example, using 99, we get the
sequence 99, 99 = 81, 81 = 8.
Input Format:
A single integer N
Output Format:
A single integer which is the number of steps after which a
single digit number occurs in the sequence.
Sample Test Cases:
Input #00:
99
Output #00:
2
Explanation:
Step - 1 : 9 * 9 = 81
Step - 2 : 8 * 1 = 8
There are 2 steps to get to this single digit number.
Input #01:
1137638147
Answer Posted / vivekamr91
#include<stdio.h>
int main()
{
int s,sum;
long num;
printf("enter the no:");
scanf("%ld",&num);
sum=num;
while(sum>10)
{
sum=0;
while(num!=0)
{
s=num%10;
sum=sum+s;
num=num/10;
}
num=sum;
}
printf("the single digit sum is :%d",sum);
return 0;
}
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Can the sizeof operator be used to tell the size of an array passed to a function?
differentiate built-in functions and user – defined functions.
What are the restrictions of a modulus operator?
When should a type cast not be used?
What does c mean in standard form?
Where is volatile variable stored?
What is the difference between memcpy and memmove?
How is a macro different from a function?
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
Is that possible to store 32768 in an int data type variable?
What is the best organizational structure?
What is conio h in c?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What is the difference between union and structure in c?
How to throw some light on the b tree?