Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from math import *
- a = float(input("Введи a:"))
- x = float(input("Введи x:"))
- y = pow(x, 3/4) + pow(5, 1/2) * tan(x) - (2*a) if x > 10 else y = cos(x) / a * sin(x)**2 + 1
- y = cos(x) / a * sin(x)**2 + 1 if x <= 10 else pow(x, 3/4) + pow(5, 1/2) * tan(x) - (2*a)
- print('x =', x, 'y =', y, sep=' ')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement