000
22.11.2002, 16:00 Uhr
virtual
Sexiest Bit alive (Operator)
|
Schreibe eine Klasse Polynom, die sich wie folgt anwenden läßt:
C++: |
Polynom p2(2.0, 4.0); // p2(x) == x^2 + 2*x + 4 Polynom p3(2.0, 4.0, 1.0); // p2(x) == x^3 + 2*x^2 + 4*x + 1
std::vector<double> koeffizienten; // .... Polynom pN(koeffizienten);
std::cout << "p2(1)=" << p2(1) << std::endl; // p2(1) = 7 std::cout << "p3(1)=" << p3(1) << std::endl; // p3(1) = 8 std::cout << "pN(1)=" << pN(1) << std::endl; // pN(1) = whatever
|
Implementiere alle Funktionen, die zu einer vollst. Kurvendiskussion erforderlich sind. -- Gruß, virtual Quote of the Month Ich eß' nur was ein Gesicht hat (Creme 21) |