poj2685

简单题

ContractedBlock.gif ExpandedBlockStart.gif View Code
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <cstdio>
using namespace std;

#define maxl 20

char st1[maxl], st2[maxl];

int getd(char *st, char a)
{
int len = strlen(st);
int x = -1;
for (int i = 0; i < len; i++)
if (st[i] == a)
{
x = i;
break;
}
if (x == -1)
return 0;
if (x == 0 || st[x - 1] > '9' || st[x - 1] < '0')
return 1;
return st[x - 1] - '0';
}

int cal(char *st)
{
int ans = 0;
ans += getd(st, 'm') * 1000;
ans += getd(st, 'c') * 100;
ans += getd(st, 'x') * 10;
ans += getd(st, 'i');
return ans;
}

void print(int a)
{
int b = a / 1000;
if (b > 1)
putchar('0' + b);
if (b != 0)
putchar('m');
b = a / 100 % 10;
if (b > 1)
putchar('0' + b);
if (b != 0)
putchar('c');
b = a / 10 % 10;
if (b > 1)
putchar('0' + b);
if (b != 0)
putchar('x');
b = a % 10;
if (b > 1)
putchar('0' + b);
if (b != 0)
putchar('i');
putchar('\n');
}

int main()
{
//freopen("t.txt", "r", stdin);
int t;
scanf("%d", &t);
while (t--)
{
scanf("%s%s", st1, st2);
int a = cal(st1);
int b = cal(st2);
print(a + b);
}
return 0;
}

转载于:https://www.cnblogs.com/rainydays/archive/2011/10/05/2199610.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值