[solved] – Question 79825
What does g(31415927)return for the following definition?
def g(x):
(q,d) = (1,0)
while q <= x:
(q,d) = (q*10,d+1)
return(d)
Expert Answer
OR
What does g(31415927)return for the following definition?
def g(x):
(q,d) = (1,0)
while q <= x:
(q,d) = (q*10,d+1)
return(d)
OR