fork download
  1. #include <iostream>
  2. #include <math.h>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. int n;
  9. cin >> n;
  10. int A[n][n];
  11. for (int i=0;i<n;i++) //ввод матрицы
  12. {
  13. for(int j=0;j<n;j++)
  14. {
  15. cin >> A[i][j];
  16. }
  17. }
  18. int b[n];
  19. for (int i=0;i<n;i++)
  20. {
  21. b[i]=0;
  22. for(int j=0;j<n;j++)
  23. {
  24. b[i]+=fabs(A[j][i]); //вычисления по формуле
  25. }
  26. }
  27. for (int i=0;i<n;i++)
  28. {
  29. cout << b[i] << " ";
  30. }
  31. return 0;
  32. }
  33.  
Success #stdin #stdout 0s 3344KB
stdin
3
 1  2 -3
-4  5  6
 7 -8  9
stdout
12 15 18