fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. double f(double x){ return -7*x*x - 4*x;}
  5. int main() {
  6. double x1 = -0.57143, sum = 0, dx = 0.01;
  7. while(x1 <= 0) {
  8. x1 += dx;
  9. sum += f(x1)*dx;
  10. }
  11. cout << sum;
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
0.217297