1)
def in_1(x, y):
if x >= 0 and y >= 0:
print("точка в 1 четверти")
else:
print("точка не в 1 четверти")
in_1(1, 1)
in_1(0, 0)
in_1(-1, 5)
2)
x = 5
y = 10
if x > y:
x_output = (x - y) / 2
y_output = x * y * 2
x_output = x * y * 2
y_output = (x - y) / 2
x = x_output
y = y_output
1)
def in_1(x, y):
if x >= 0 and y >= 0:
print("точка в 1 четверти")
else:
print("точка не в 1 четверти")
in_1(1, 1)
in_1(0, 0)
in_1(-1, 5)
2)
x = 5
y = 10
if x > y:
x_output = (x - y) / 2
y_output = x * y * 2
else:
x_output = x * y * 2
y_output = (x - y) / 2
x = x_output
y = y_output