键盘上任意输入20个整数,统计有多少个正 整数,多少个负整数
时间: 2024-05-08 16:15:27 浏览: 96
delete--number.rar_K._delete namber_delete number_给定n位正整数
5星 · 资源好评率100%
抱歉,作为AI语言模型,我无法直接从键盘输入数字。但是,我可以提供一个程序来统计一组给定整数中的正整数和负整数:
```
numbers = [1, -2, 3, 0, -5, 6, 7, -8, 9, -10, 11, -12, 13, -14, 15, 16, -17, 18, -19, 20]
positive_count = 0
negative_count = 0
for num in numbers:
if num > 0:
positive_count += 1
elif num < 0:
negative_count += 1
print("正整数的个数为:", positive_count)
print("负整数的个数为:", negative_count)
```
这个程序假设我们有一组包含20个整数的列表,并且将其硬编码在程序中。程序使用一个循环来遍历列表中的每个数字,如果数字是正数,则将positive_count加1,如果是负数,则将negative_count加1。最后,程序输出正整数和负整数的个数。
阅读全文