测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A61312. 要求以下程序的功能是计算:s = 1 + 1/2 + 1/3 + ... + 1/10。#include <iostream>

单选题

题目描述

要求以下程序的功能是计算:s = 1 + 1/2 + 1/3 + ... + 1/10

#include <iostream>
using namespace std;
int main() {
    int n;
    float s;
    s = 1.0;
    for (n = 10; n > 1; n--)
        s = s + 1 / n; 
    cout << s << endl; 
    return 0;
}

程序运行后输出结果错误,导致错误结果的程序行是( )。

选项(单选)