标题:迭代法中 y=n次根号下x
只看楼主
daniel2008
Rank: 1
等 级:新手上路
帖 子:24
专家分:0
注 册:2008-9-1
 问题点数:0 回复次数:1 
迭代法中 y=n次根号下x
#include <iostream>
#include <cmath>
using namespace std;
int main()
{float x,y1,y2;
int n;
cout<<"enter a number:";
cin>>x;
cout<<"enter an integer:";
cin>>n;
y2=x;
do
{y1=y2;
y2=((n-1)*y1+x/pow(y1,n-1))/n;
}  while (fabs(y2-y1)>=1e-5);
cout<<y2<<endl;
return 0;
}
这里的y2=x是起什么作用的? x可以修改为任意数。。。 实在是不解?
搜索更多相关主题的帖子: 迭代法 根号 
2009-09-16 20:15
helloabiao
Rank: 2
等 级:论坛游民
帖 子:6
专家分:25
注 册:2009-9-9
得分:0 
y2实质上起一个临时变量的作用呀。。。。迭代过程中不是每次都取一个上一次的值作为本次的迭代的数么。。。
X 不就是要求方根的数么,你开始输入时什么就是什么了的。。
2009-09-17 11:03



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-285937-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.143061 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved