python编程计算正数个数负数个数和零的个数并把负数求和

2024-11-30 14:00:24
推荐回答(1个)
回答1:

a=int(input())
if a>0:
print('正数')
elif a<0:
print('负数')
else:
print('0')