码迷,mamicode.com
首页 > 其他好文 > 详细

字符变换

时间:2015-07-06 12:31:47      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:华为上机题

输入一个字符串,将其中大写字母转换为对应小写字母之后的第五个字母,若原始大写字母为V~Z, 则转换为对应小写字母的值减21。其他字符不变,输出转换后的字符串。 例如,对于字母A,则转换为小写字母f;若形参是字母W,则转换为小写字母b。

#include <iostream>
#include <string.h>
using namespace std;

int main()
{
	char str[100];
	cin>>str;
	int len=strlen(str);
	for(int i=0;i<len;i++)
	{
		if(str[i]>='A'&&str[i]<='U')
			str[i]=str[i]+37;
		else if(str[i]>='V'&&str[i]<='Z')
			str[i]=str[i]+11;
	}
	cout<<str<<endl;
	return 0;
}



版权声明:本文为博主原创文章,未经博主允许不得转载。

字符变换

标签:华为上机题

原文地址:http://blog.csdn.net/persever/article/details/46771133

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!