任意输入十个数然后再输入一个数找出十个数中与这个数相等的数的个数
时间: 2024-01-25 21:04:05 浏览: 63
输入10个数,然后按顺序排列
好的,您可以使用以下的 Python 代码实现:
```python
numbers = []
for i in range(10):
num = int(input("请输入第{}个数:".format(i+1)))
numbers.append(num)
target = int(input("请输入要查找的数:"))
count = numbers.count(target)
print("在输入的十个数中,与{}相等的数的个数为:{}".format(target, count))
```
这段代码首先使用循环输入十个数,并将它们存储在一个列表 `numbers` 中。然后再输入要查找的数 `target`。接着使用列表的 `count` 方法统计与 `target` 相等的数的个数,并输出结果。
希望对您有所帮助!
阅读全文