Search:

Type: Posts; User: shirayukilee

Search: Search took 0.08 seconds.

  1. Replies
    3
    Views
    1,274

    Re: Max Element In Matrix

    Here


    for (int i = 0; i < n; i++)
    {
    for (int j = 0; j < m; j++)
    {
    if (a[i, j] > max)
    {
    max = a[i, j];
  2. Replies
    3
    Views
    1,274

    Max Element In Matrix

    Hello

    I am beginner in programming and I need a little help. In given matrix, I have to find elements that are maximal for its row and column.

    For example in matrix

    5 7 3 4 8
    4 5 9 4 6
    3...
Results 1 to 2 of 2