编写函数fun,函数的功能是:根据以下公式计算s,计算结果作为函数值返回;n通过形参传入。
时间: 2023-03-30 16:02:48 浏览: 241
vc.zip_4 3 2 1_earlierm8a_vc编写htons函数
我可以回答这个问题。函数fun的公式如下:s = 1 + 1/2 + 1/3 + ... + 1/n。函数fun的实现如下:
double fun(int n) {
double s = .;
for (int i = 1; i <= n; i++) {
s += 1. / i;
}
return s;
}
阅读全文