Advertisement
kamos

Untitled

Oct 23rd, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.52 KB | None | 0 0
  1. #include <cmath>
  2. #include <iostream>
  3. #include <vector>
  4.  
  5. int main() {
  6.     short negative = 0;
  7.     std::vector<double> array_all;      //all elements
  8.     std::vector<double> array_second;   //elements after the second negative
  9.     for(int i = 0; i < 12; ++i) {
  10.         double tmp = 4.4 * std::tan(2.1 * (i + 1)) + (12.16 * std::pow(i + 1, 3.0) + std::cos(2.0 * (i + 1)))
  11.             / (3.0 * (2.0 * std::exp(1.1 * (i + 1)) - 0.6));
  12.         array_all.push_back(tmp);
  13.         if(tmp < 0) ++negative;
  14.         if(negative >= 2) array_second.push_back(tmp);
  15.     }
  16.  
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement