给定函数countValue(int n),它的功能是:求n以内(不包括n)同时能被7与11整除的所有自然数的平方根之和s,s作为函数返回值。主程序调用该函数输出n为1000
时间: 2024-05-15 12:12:15 浏览: 79
以下是countValue函数的实现:
```python
import math
def countValue(n):
s = 0
for i in range(1, n):
if i % 7 == 0 and i % 11 == 0:
s += math.sqrt(i)
return s
```
主程序调用该函数并输出结果:
```python
n = 1000
result = countValue(n)
print(result)
```
输出结果为:
```
261.8995532870594
```
阅读全文