统计正数负数和零的个数
时间: 2023-10-25 08:27:38 浏览: 98
eg.zip_Q55_统计一组字数据中正数、负数、零的个数。
5星 · 资源好评率100%
好的,这个问题很简单,可以使用一个循环遍历整个数列,然后分别统计正数、负数和零的个数。下面是一个Python代码示例:
```python
nums = [2, 0, -5, 1, 3, -2, 0, 7, -4, 0]
positive_count = 0
negative_count = 0
zero_count = 0
for num in nums:
if num > 0:
positive_count += 1
elif num < 0:
negative_count += 1
else:
zero_count += 1
print("Positive numbers:", positive_count)
print("Negative numbers:", negative_count)
print("Zeros:", zero_count)
```
输出结果为:
```
Positive numbers: 4
Negative numbers: 3
Zeros: 3
```
这个代码可以适用于任何整数数列。
阅读全文