欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

PAT1066

程序员文章站 2022-07-15 14:03:37
...
#include<iostream>
#include <iomanip>
#include <cstdio>
#include<string>
#include<vector>
#include<array>
#include<math.h>
#include <ctype.h>
#include<algorithm>
#include <set>
using namespace std;

int main()
{
	int a, b, c, d, e,i,j,x;
	scanf("%d %d %d %d %d", &a, &b, &c, &d,&e);
	//cin >> a >> b >> c >> d >> e;
	for (i = 0; i < a; i++)
	{
		for (j = 0; j < b; j++)
		{
			scanf("%d", &x);
			//cin >> x;
			if (x >= c && x <= d)
			{
				x = e;
			}
			printf("%03d", x);
			if (j != b-1)
				cout << " ";
		}
		printf("\n");
	}
	return 0;
}

相关标签: PAT