Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
20697 | luzhiqianga | 倒数和 | C++ | 解答错误 | 0 | 0 MS | 248 KB | 287 | 2021-06-19 19:56:49 |
#include <bits/stdc++.h> using namespace std; int main( ) { int n,m; double total; cin>>m; n=1; total=0; while(n<=m) { total+=(1.0/n); n++; } cout<<floor(total); return 0; }