Ответ:
Скрин работы в приложении
Объяснение:
#!/usr/bin/env python3
import math
while True:
try:
line = input('Введите x: ')
if not line:
break
x = float(line)
y = 0
if x <= 0:
y = math.cos(x)
else:
y = 1-math.tan(2*x)
print('y =', y)
except ValueError as err:
print(err)
continue
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Скрин работы в приложении
Объяснение:
#!/usr/bin/env python3
import math
while True:
try:
line = input('Введите x: ')
if not line:
break
x = float(line)
y = 0
if x <= 0:
y = math.cos(x)
else:
y = 1-math.tan(2*x)
print('y =', y)
break
except ValueError as err:
print(err)
continue