leoql


私信TA

用户名:17105150054

访问量:6193

签 名:

programming is the most fun you can have with your clothes on.

等  级
排  名 2987
经  验 2074
参赛次数 0
文章发表 20
年  龄 0
在职情况 学生
学  校 HNCA
专  业 CS

  自我简介:

TA的其他文章

解题思路:输入n,代表循环次数,定义double t,循环[1,n],1.0/t,累加更新t,输出t %.6lf

注意事项:double 类型的t.循环内将i强制转换为double,输出时格式printf("%.6lf",t);

参考代码:

/*

*/
#include <cstdio>
#include <algorithm>
#include <iostream>
using namespace std;

int main(){
	int n;
	cin>>n;
	double t=0.0;
	for(int i=1;i<=n;i++){
		t+=1.0/double(i);
	}
	 
	printf("%.6lf",t);
	return 0;
}


 

0.0分

0 人评分

  评论区

  • «
  • »