for problem 11
pseudocode:
func multiplicative_peristence(num)
count = 0
while num > 9
count = count + 1
num = multOfNumber(num)
end while
return count;
end func
func multOfNumber(num)
mul = 1
while num != 0
mul *= num%10
num = num / 10 (removing decimal )
end while
return mul;
end func

!