Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import math
- def skip():
- print ("_" * 60)
- print ("_" * 60)
- skip()
- # Перше завдання (4 варіант)
- # 1) While
- x = 4.5
- while True:
- y = (x ** 3 - 2) / (math.sqrt(x ** 2 + 1))
- print("Якщо x = ", round(x, 1), ", то y = ", round(y, 3), sep='')
- x = x + 2.2
- if (x > 16.4):
- break
- skip()
- # 2) For
- a = 2
- for c in range(1, 6):
- b = (a ** 3 - 2) / (math.sqrt(a ** 2 + 1))
- print("Якщо x = ", round(a, 1), ", то y = ", round(b, 3), sep='')
- a = a + 1.5
- skip()
- # Друге завдання
- sum = 0
- for i in range(9, 25, 2):
- sum += i
- print("Сума чисел –", sum)
- skip()
- # Третє завдання
- sides = [3, 4.5, 6, 7.5, 9]
- index = 0
- d = {0: 'першого', 1: 'другого', 2: 'третього', 3: 'четвертого', 4: 'п\'ятого'}
- for i in sides:
- i **= 3
- word = d.get(index)
- print ("Об'ем", word, "куба –", i)
- index += 1
- skip()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement