fork download
  1. #include <iostream>
  2. #include <math.h>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. int T[20],i;
  9.  
  10. // tablicę wypełniamy wielokrotnościami liczby 3
  11.  
  12. for(i = 0; i < 20; i++) T[i] = 1 * pow(-1,i+1 ) * ((-2*(i+1)+pow(-1,i+1 )-1 ) /4) ;
  13.  
  14. // wyświetlamy zawartość tablicy
  15.  
  16. for(i = 0; i < 20; i++) cout << "T[" << i << "] = " << T[i] << endl;
  17.  
  18. return 0;
  19. }
Success #stdin #stdout 0.01s 2680KB
stdin
Standard input is empty
stdout
T[0] = 1
T[1] = -1
T[2] = 2
T[3] = -2
T[4] = 3
T[5] = -3
T[6] = 4
T[7] = -4
T[8] = 5
T[9] = -5
T[10] = 6
T[11] = -6
T[12] = 7
T[13] = -7
T[14] = 8
T[15] = -8
T[16] = 9
T[17] = -9
T[18] = 10
T[19] = -10