多項式の解を求めます
895 ワード
:
* ( , )
*
* Copyright (c) 2011,
* All rights reserved.
* :
* :
* :2011 11 08
* :x1.0
*
* :
* :
* :
* :……
* :……
* ( )
#include <iostream>
using namespace std;
int main()
{
double a,b,c,d,e,x,m;
cout<<" a,b,c,d,e :"<<endl;
cin>>a>>b>>c>>d>>e;
cout<<" x :"<<endl;
cin>>x;
m=(((a * x + b) * x + c) * x + d) * x + e;
cout<<" :"<<m<<endl;
return 0;
}
実行結果:(マップ)
経験の蓄積:1.よく分析する2.同級生とよく討論する
気持ちがいい