Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. def f(x, y, licznik):
  2. z = 108 - ((815 - (1500 / x)) / y)
  3. print(z)
  4. licznik = licznik + 1
  5. if y != z:
  6. f(y, z, licznik)
  7. else:
  8. print("Liczba wystapien : " + str(licznik))
  9.  
  10.  
  11. f(4, 4.25, 0)
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34. x=77617
  35. y=33096
  36. g= 333.75*y**6+x**2*(11*x**2*y**2-y**6-121*y**4-2)+5.5*y**8*(x/2*y)
  37. print(g)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement