编写程序,输入正整数n输出1-1/2+1/3-1/4+...+(-1)∧n-1/n的值
时间: 2023-12-04 19:05:03 浏览: 79
3nplus1_3n+1_
以下是Python实现的代码:
```python
n = int(input("请输入一个正整数n:"))
result = 0
for i in range(1, n+1):
if i % 2 == 0:
result -= 1 / i
else:
result += 1 / i
print("结果为:{:.4f}".format(result))
```
阅读全文