工作生活

PAT 1066 图像过滤 (15 分)

2019-07-02  本文已影响0人  昭明ZMing
#include <iostream>
using namespace std;
int main() {
    int m, n, a, b, replace, temp;
    scanf("%d%d%d%d%d", &m, &n, &a, &b, &replace);
    for (int i = 0; i < m; i++) {
        for (int j = 0; j < n; j++) {
            scanf("%d", &temp);
            if (temp >= a && temp <= b)
                temp = replace;
            if (j != 0) printf(" ");
            printf("%03d", temp);//0md,不足m位,前面用0补齐
        }
        printf("\n");
    }
    return 0;
}
上一篇 下一篇

猜你喜欢

热点阅读