wap to input a number and find the product of the digit and check whether the digit is the number bus number or not
Answers
Answered by
0
Explanation:
General Algorithm for product of digits in a given number:
Get the rightmost digit of the number with help of remainder '%' operator by dividing it with 10 and multiply it with product. Divide the number by 10 with help of '/' operator. Print or return the product.
Similar questions