Advertisement
daniv1

29.14

Oct 29th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.65 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. #define size 4
  5.  
  6. void print2dArray(double array[][size])
  7. {
  8.     for(int i = 0; i!= size ; ++i)
  9.     {
  10.         for(int j = 0 ; j != size; ++j)
  11.         {
  12.             printf("%.2lf ",array[i][j]);
  13.         }
  14.         printf("\n");
  15.     }
  16. }
  17.  
  18. int main()
  19. {
  20.     double array[size][size];
  21.     for(int i = 0; i!= size ; ++i)
  22.     {
  23.         for(int j = 0 ; j != size; ++j)
  24.         {
  25.             if(j == 2)
  26.             {
  27.                 array[i][j] = 1;
  28.             }
  29.             else
  30.             {
  31.             array[i][j] = (1+j)*pow(i,2) + j;
  32.             }
  33.         }
  34.  
  35.     }
  36.     print2dArray(array);
  37.  
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement