• с++.
    как рассчитать среднее каждой строки двумерного массива?

Ответы 1

  • #include <iostream>

    #include <cstdlib>

    using namespace std;

    int main()

    {

    int n, m;

     cout << "Rows: "; cin >> n;

     cout << "Columns: "; cin >> m;

       int a[n][m];

    int all_sum = 0;

    float average;

     for(int i = 0; i < n; i++){

      for(int j = 0; j < m; j++){

       cout << "Element[" << i << "][" << j << "] = "; cin >> a[i][j];

      }

     }

     

     cout << "Show massiv" << endl;

     for(int i = 0; i < n; i++){

      for(int j = 0; j < m; j++){

       cout << a[i][j] << " ";

      }

      cout << endl;

     }

     

     for(int i = 0; i < n; i++){

      for(int j = 0; j < m; j++){

       all_sum += a[i][j];

      }

      average = all_sum / m;

      cout << "Average " << i+1 << " row: " << average << endl;

     }

    system("pause");

    }

    • Автор:

      beatriz
    • 5 лет назад
    • 0
  • Добавить свой ответ

Войти через Google

или

Забыли пароль?

У меня нет аккаунта, я хочу Зарегистрироваться

How much to ban the user?
1 hour 1 day 100 years