Computer Science, asked by avdhootwakchaure06, 3 months ago

What is h(41)-h(40), given the definition of h below?def h(n): s = 0 for i in range(1,n+1): if n%i > 0: s = s+1 return(s)


Answers

Answered by someshdas520
2

Answer:

6

Explanation:

first compute h(41) then h(40) at last substract.

Similar questions