美文网首页工作生活
PAT 1066 图像过滤 (15 分)

PAT 1066 图像过滤 (15 分)

作者: 昭明ZMing | 来源:发表于2019-07-02 23:19 被阅读0次
#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;
}

相关文章

网友评论

    本文标题:PAT 1066 图像过滤 (15 分)

    本文链接:https://www.haomeiwen.com/subject/qxbxhctx.html