Ответ:
вот простая конструкция
Объяснение:
a, b, c = int(input('a ')), int(input('b ')), int(input('c '))
if a < 0:
print(a**4)
else:
print(a**2)
if b < 0:
print(b**4)
print(b**2)
if c < 0:
print(c**4)
print(c**2)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
вот простая конструкция
Объяснение:
a, b, c = int(input('a ')), int(input('b ')), int(input('c '))
if a < 0:
print(a**4)
else:
print(a**2)
if b < 0:
print(b**4)
else:
print(b**2)
if c < 0:
print(c**4)
else:
print(c**2)