from math import *
x = int(input("Введите х: "))
if x >= 0:
y = sqrt(x)
else:
y = x**2
print(y)
Блок схема на приложенном фото.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
from math import *
x = int(input("Введите х: "))
if x >= 0:
y = sqrt(x)
else:
y = x**2
print(y)
Блок схема на приложенном фото.