Advertisement
Lavig

Практична робота №4_1

Nov 1st, 2022 (edited)
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.96 KB | None | 0 0
  1. import math
  2. def skip():
  3.     print ("_" * 60)
  4.     print ("_" * 60)
  5. skip()
  6. # Перше завдання (4 варіант)
  7. # 1) While
  8. x =  4.5
  9. while True:
  10.     y = (x ** 3 - 2) / (math.sqrt(x ** 2 + 1))
  11.     print("Якщо x = ", round(x, 1), ", то y = ", round(y, 3), sep='')
  12.     x  =  x + 2.2
  13.     if (x > 16.4):
  14.         break
  15. skip()
  16. # 2) For
  17. a = 2
  18. for c in range(1, 6):
  19.     b = (a ** 3 - 2) / (math.sqrt(a ** 2 + 1))
  20.     print("Якщо x = ", round(a, 1), ", то y = ", round(b, 3), sep='')
  21.     a = a + 1.5
  22. skip()
  23. # Друге завдання
  24. sum = 0
  25. for i in range(9, 25, 2):
  26.     sum += i
  27. print("Сума чисел –", sum)
  28. skip()
  29. # Третє завдання
  30. sides = [3, 4.5, 6, 7.5, 9]
  31. index = 0
  32. d = {0: 'першого', 1: 'другого', 2: 'третього', 3: 'четвертого', 4: 'п\'ятого'}
  33. for i in sides:
  34.     i **= 3
  35.     word = d.get(index)
  36.     print ("Об'ем", word, "куба –", i)
  37.     index += 1
  38. skip()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement