欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

第二节 练习3

程序员文章站 2024-03-11 19:38:25
...
#include<iostream>
#include<iomanip>
#include<cstdio>
#include<cmath>
#include<algorithm>

using namespace std;

int main()
{
	int k,n=0;
	float s=0;
	cout << "输入:";
	cin >> k;
	
	while(s<=k){
		n++;   //注意始末 
		//调整递变语句顺序,则可微调始末 
		s += 1 / (n*1.0);
	}
	cout << n; 
	return 0;
}
//cout << "输入:";

结果:

第二节 练习3