Computer Science, asked by priyarocks04, 8 months ago

What is the value of f(4000) for the function below?
def f(x):
d=0
while x >= 1:
(x,d) = (x/5,d+1)
return(d)

Answers

Answered by DaxayMakwana
14

Answer:

i thinks its return 6

Explanation:

you can divide upto 6 times 4000 with 5

Answered by rajeshprinceid
9

Answer:

f(4000)

6

Explanation:

Similar questions