Ответ:a = int(input("Введіть значення змінної a: "))
if a > 0:
s = 1
elif a < 0:
s = -1
else:
s = 0
print("Значення змінної s дорівнює", s)
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:a = int(input("Введіть значення змінної a: "))
if a > 0:
s = 1
elif a < 0:
s = -1
else:
s = 0
print("Значення змінної s дорівнює", s)
Объяснение: