码迷,mamicode.com
首页 > 其他好文 > 详细

rwkj 1308

时间:2014-08-10 12:47:30      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   art   ar   

bubuko.com,布布扣
#include<stdio.h>
main()
{
    float x=2.5,y,x1=2.5,a,b,c,d,max,min;
    scanf("%f%f%f%f",&a,&b,&c,&d);
    do
    {
        y=x-(a*x*x*x+b*x*x+c*x+d)/(3*a*x*x+2*b*x+c);
        x=y;
    }while((a*x*x*x+b*x*x+c*x+d)!=0);
    printf("%.3f\n",y);
}
View Code

#include<stdio.h>
main()
{
    float x=2.5,y,x1=2.5,a,b,c,d,max,min;
    scanf("%f%f%f%f",&a,&b,&c,&d);
    do
    {
        y=x-(a*x*x*x+b*x*x+c*x+d)/(3*a*x*x+2*b*x+c);
        x=y;
    }while((a*x*x*x+b*x*x+c*x+d)!=0);
    printf("%.3f\n",y);
}

 

 

 

 

bubuko.com,布布扣
#include <stdio.h>
#include <math.h>
int main()
{
    float a,b,c,d,x,fx,x1,fx1;
    scanf("%f%f%f%f",&a,&b,&c,&d);
    x1=2.5;  
    do 
    {   x=x1;
        fx=a*x*x*x+b*x*x+c*x+d;
        fx1=3*a*x*x+b*2*x+c;
        x1=x-fx/fx1;
    } while (fabs(x1-x)>=1e-6);         
    printf("%.3f\n",x);
    return 0;
}
View Code

#include <stdio.h>
#include <math.h>
int main()
{
    float a,b,c,d,x,fx,x1,fx1;
    scanf("%f%f%f%f",&a,&b,&c,&d);
    x1=2.5; 
    do
    {   x=x1;
        fx=a*x*x*x+b*x*x+c*x+d;
        fx1=3*a*x*x+b*2*x+c;
        x1=x-fx/fx1;
    } while (fabs(x1-x)>=1e-6);        
    printf("%.3f\n",x);
    return 0;
}


 

bubuko.com,布布扣
#include <iostream>
#include <iomanip>
#include <cmath>
using namespace std;
int main(int argc, char *argv[])
{
    float a,b,c,d,x,x1,f;
    cin>>a>>b>>c>>d;
    x1=2.5;
    do
    {
        x=x1;
     f=a*x1*x1*x1+b*x1*x1+c*x1+d;
     x1=x-f/(3*a*x1*x1+2*b*x1+c);
    }
    while (fabs(x-x1)>=1e-10);
    cout<<fixed<<setprecision(3)<<x<<endl;
    return 0;
} 
View Code

#include <iostream>
#include <iomanip>
#include <cmath>
using namespace std;
int main(int argc, char *argv[])
{
    float a,b,c,d,x,x1,f;
    cin>>a>>b>>c>>d;
    x1=2.5;
    do
    {
        x=x1;
     f=a*x1*x1*x1+b*x1*x1+c*x1+d;
     x1=x-f/(3*a*x1*x1+2*b*x1+c);
    }
    while (fabs(x-x1)>=1e-10);
    cout<<fixed<<setprecision(3)<<x<<endl;
    return 0;
}


 

 

rwkj 1308,布布扣,bubuko.com

rwkj 1308

标签:style   blog   http   color   os   io   art   ar   

原文地址:http://www.cnblogs.com/2014acm/p/3902542.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!