VB编程迭代法求解方程

2024-12-28 03:27:46
推荐回答(2个)
回答1:

#include
#include

float value()
{
float x0, x1;
x0 = 0;
x1 = cos(x0);
while (abs(x0 - x1) >= 0.000001)
{
x0 = x1;
x1 = cos(x0);
}
return x1;
}

void main()
{
printf("迭代方法求方程:cos(x)-x=0的解为%f\n", value());
}

回答2:

给你一个群号,这里面都是相关的高手!希望对你 有帮助啊!59400482