杭电acm2140

C语言 码拜 8年前 (2016-01-29) 1004次浏览
Problem Description
I believe many people are the fans of prison break. How clever Michael is!! In order that the message won””t be found by FBI easily, he usually send code letters to Sara by a paper crane. Hence, the paper crane is Michael in the heart of Sara. Now can you write a program to help Sara encode the letter from Michael easily?
The letter from Michael every time is a string of lowercase letters. You should encode letters as the rules below:
b is “” “”, q is “”,””, t is “”!””, m is l, i is e, c is a, a is c, e is i, l is m. It is interesting. Are you found that it is just change michael to leahcim?
 
Input
The input will consist of several cases, one per line.
Each case is a letter from Michael, the letteres won””t exceed 10000.
 
Output
For each case, output the encode letter one line.
 
Sample Input
pmicsibforgevibliqbscrct
ebmovibyout
 
Sample Output
please forgive me, sara!
i love you!
 
解决方案:40分
	for(i=0;i<l;i++)
		printf("%s",a[i]);

=>

printf("%s", a);

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明杭电acm2140
喜欢 (0)
[1034331897@qq.com]
分享 (0)