Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
20698 luzhiqianga 倒数和 C++ 解答错误 10 0 MS 248 KB 289 2021-06-19 19:57:34

Tests(1/10):


#include <bits/stdc++.h> using namespace std; int main( ) { int n,m; double total; cin>>m; n=1; total=1; while(n<=m) { total+=(1.0/n+1); n++; } cout<<floor(total); return 0; }


测评信息: