Advertisement
dmemsm

Задача 3

Jan 24th, 2024 (edited)
858
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. import math
  2.  
  3. result = 95+math.sqrt(5)
  4.  
  5. for i in range(90, 0, -5):
  6.     result += i + math.sqrt(result)/2
  7.  
  8. result = math.sqrt(result)
  9. print(result)
  10.  
  11. # 34.44878785772421
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement