• Как поменять местами элементы массива?

    @Aysd661 Автор вопроса
    User700, #include
    #include
    #include
    using namespace std;
    int main()
    {
    setlocale(0, "");
    const int A = 5;
    const int B = 5;
    int i, a[A][B], j;
    srand(time(NULL));
    for (i = 0; i < A; i++)
    {
    for (j = 0; j < B; j++)
    {
    a[i][j] = rand() % 19;
    }
    }
    cout << "Матрица, заполненная случайными элементами: " << endl;
    for (i = 0; i < A; i++)
    {
    for (j = 0; j < B; j++)
    {
    cout << setw(5) << a[i][j];
    }
    cout << endl;
    }
    cout << "--------------------------------------------" < for (i = 0; i < A; i++)
    {
    int q = 0, max = 0;
    for (j = 0; j < B; j++)
    {
    if (a[i][j] > max)
    {
    max = a[i][j];
    if (a[i][j] = max)
    {
    a[i][j] = a[i][i];
    a[i][i] = max;
    }

    }

    }

    a[i][i] = max;
    cout << "Наибольший элемент строки " << i + 1 << " равен " << max << endl;
    cout << "--------------------------------------------" << endl;
    }

    cout << "Полученная матрица " << endl;
    for (i = 0; i < A; i++)
    {
    for (j = 0; j < B; j++)
    {
    cout << setw(5) << a[i][j];
    }
    cout << endl;
    }



    return 0;
    }