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

如题所述

第1个回答  2017-11-22
a=int(input())
if a>0:
print('正数')
elif a<0:
print('负数')
else:
print('0')本回答被网友采纳
相似回答