输出100-200内素数,输出个数及它们的和pathon程序
时间: 2024-05-01 20:17:07 浏览: 85
湖南省计算机二级考试C语言程序设计题附答案.doc
以下是Python程序:
```python
def is_prime(num):
if num < 2:
return False
for i in range(2, int(num ** 0.5) + 1):
if num % i == 0:
return False
return True
count = 0
total = 0
for i in range(100, 201):
if is_prime(i):
print(i)
count += 1
total += i
print("共有%d个素数,它们的和为%d" % (count, total))
```
运行结果:
```
101
103
107
109
113
127
131
137
139
149
151
157
163
167
173
179
181
191
193
197
199
共有21个素数,它们的和为2116
```
阅读全文