// PATn.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include<iostream>
#include<string>
#include<vector>
using namespace std;
string format(string s)
{
auto tmp = 3 - s.size();
if (tmp > 0)
{
s = string(tmp, '0') + s;
}
return s;
}
string change_color(unsigned s, unsigned a, unsigned b, string tc)
{
if (a <= s && s <= b)
{
return tc;
}
else
{
return format(to_string(s));
}
}
int main()
{
unsigned m, n;
unsigned a, b;
string to_color;
cin >> m >> n >> a >> b >> to_color;
to_color = format(to_color);
vector<vector<string>> format_color(m,vector<string>(n,""));
for (unsigned i = 0; i < m; ++i)
{
for (unsigned j = 0; j < n; ++j)
{
unsigned tmp;
cin >> tmp;
auto tmp_color = change_color(tmp, a, b, to_color);
format_color[i][j] = tmp_color;
}
}
for (size_t i = 0; i < format_color.size(); ++i)
{
for (size_t j = 0; j < format_color[i].size(); ++j)
{
cout << format_color[i][j];
if (j != (format_color[i].size() - 1))
cout << " ";
}
if (i != (format_color.size() - 1))
{
cout << endl;
}
}
system("pause");
return 0;
}
1066
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 由碧水寒心(北京碧水寒心文化传媒有限公司)出品、炫动影业(北京炫动映像影视传媒有限公司)独家营销发行的悬疑烧脑电影...