Заменить значения всех отрицательных элементов матрицы на нулевые с языка с. как?

Backlajan89 Backlajan89    3   10.09.2019 09:40    0

Ответы
Айзат121а Айзат121а  07.10.2020 05:10
#include <stdio.h>
#include <cstdlib>
#include <ctime>

const unsigned int n = 5;
const unsigned int m = 6;

int main()
{
    srand(time(NULL));
    int i, j;
    int a[n][m];
    printf("\nSource:\n");
    for (i = 0; i < n; i++) {
        for (j = 0; j < m; j++) {
            a[i][j] = rand() % 201 - 100;
            printf("%d\t", a[i][j]);
        }
        printf("\n");
    }
    printf("\nResult:\n");
    for ( i = 0; i < n; i++) {
        for (j = 0; j < m; j++) {
            if (a[i][j] < 0) a[i][j] = 0;
            printf("%d\t", a[i][j]);
        }
        printf("\n");
    }
    getchar();
}
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика