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

Chang'an(YY's string-模拟)

时间:2015-04-22 09:36:08      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:

技术分享


手速题


#include <bits/stdc++.h>
using namespace std;
#define For(i,n) for(int i=1;i<=n;i++)
#define Rep(i,n) for(int i=0;i<n ;i++)
#define MAXN (100000)

string s;

int main()
{
	//freopen("1.in.cpp","r",stdin);
	bool t=true;
	while (getline(cin,s))
		{
		int l=s.length();
		for (int i=0;i<l;i++)
			{
			if (t) {
				if (!isalpha(s[i]) && !(s[i]<='9' && s[i]>='0')) {printf("%c",s[i]);continue;
				}
				if (s[i]<='9' && s[i]>='0') {t=false;printf("%c",s[i]);continue;
				}
				s[i]=toupper(s[i]);
				printf("%c",s[i]);
				t=false;
				continue;
				}
			if (!t)
		    {
				if (s[i]=='.') 
				{
					printf("%c",s[i]);t=true;
				}
				else printf("%c",tolower(s[i]));
			}
			}
		cout<<endl;
		}
	
	return 0;
}






Chang'an(YY's string-模拟)

标签:

原文地址:http://blog.csdn.net/nike0good/article/details/45190059

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