Advertisement
dzieciol

calkowanie trapezami

Nov 18th, 2016
417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.64 KB | None | 0 0
  1. #include <iostream>
  2. #include <math.h>
  3.  
  4. using namespace std;
  5.  
  6. double calkowanieTrapezami(double dolnaGranica, double gornaGranica, int liczbaKrokow)
  7. {
  8.  
  9.     double deltax=(gornaGranica - dolnaGranica)/liczbaKrokow;
  10.  
  11.     double k=0;
  12.     cout<<deltax<<endl;
  13.  
  14.     for(int i=0 ; i<liczbaKrokow ; i++)
  15.     {
  16.         k += (cos(dolnaGranica+(deltax)*i)*cos(dolnaGranica+(deltax)*i)+1+cos(dolnaGranica+(deltax)*(i+1))*cos(dolnaGranica+(deltax)*(i+1))+1);
  17.  
  18.         cout<<i<<": "<<k<<endl;
  19.     }
  20.  
  21.     return (k/liczbaKrokow);
  22. }
  23.  
  24.  
  25.  
  26. int main()
  27. {
  28.     cout << "Hello world!" << endl;
  29.     cout<< calkowanieTrapezami(0,6.28,4);
  30.  
  31.     return 0;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement