博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【hdu - 1161 Eddy's mistakes】
阅读量:6691 次
发布时间:2019-06-25

本文共 1737 字,大约阅读时间需要 5 分钟。

Eddy's mistakes

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 4754    Accepted Submission(s): 2697

Problem Description
Eddy usually writes articles ,but he likes mixing the English letter uses, for example "computer science" is written frequently "coMpUtEr scIeNce" by him, this mistakes lets Eddy's English teacher be extremely discontentment.Now please you to write a procedure to be able in the Bob article English letter to turn completely the small letter.
 

 

Input
The input contains several test cases.each line consists a test case,Expressed Eddy writes in an article , by letter, blank space,numeral as well as each kind of punctuation
composition, the writing length does not surpass 1000 characters.
 

 

Output
For each test case, you should output an only line, after namely the result of transforms the lowercase letter.
 

 

Sample Input
weLcOmE tO HDOj Acm 2005!
 

 

Sample Output
welcome to hdoj acm 2005!
 

 

Author
eddy
 

 

Recommend
JGShining
 
1 // Project name : 1161 ( Eddy's mistakes )  2 // File name    : main.cpp 3 // Author       : Izumu 4 // Date & Time  : Mon Jul  9 09:45:51 2012 5  6  7 #include 
8 using namespace std; 9 10 int main()11 {12 char ch;13 while (cin.get(ch))14 {15 if (ch >= 'A' && ch <= 'Z')16 {17 ch = ch + ('a' - 'A');18 }19 cout << ch;20 while (cin.get(ch) && ch != '\n')21 {22 if (ch >= 'A' && ch <= 'Z')23 {24 ch = ch + ('a' - 'A');25 }26 cout << ch;27 }28 cout << endl;29 }30 return 0;31 }32 33 // end 34 // ism

 

转载于:https://www.cnblogs.com/ismdeep/archive/2012/07/09/2582222.html

你可能感兴趣的文章
拆解新版Oculus Rift,竟内置三星Note3手机屏
查看>>
针尖上带着脚镣跳舞的widget
查看>>
数据中国“百校工程” 曙光助力太原理工大学成立大数据学院
查看>>
四分之三的企业热衷于大数据
查看>>
爱加密与安百科技深度“联姻” 共同消弭企业“安全孤岛”
查看>>
俄罗斯新法案要求所有消息应用内置加密后门
查看>>
无线营销方案
查看>>
《Java安全编码标准》一2.2 IDS01-J验证前标准化字符串
查看>>
物联网市场正从碎片化走向板块化 平台型公司将成为赢家
查看>>
《软件需求工程(第2版)》一2.2 软件开发过程模型
查看>>
如何正确响应安全事件?
查看>>
Redis 在Centos Linux 上的启动脚本
查看>>
怎样维护成功的开源项目
查看>>
如何使用CRM的销售管理
查看>>
智能灯将成为最大物联网消费设备
查看>>
警惕黑客重视网络安全
查看>>
易维帮助台:企业售后服务如何高效派单
查看>>
物联网国际标准一半以上“无锡定”
查看>>
嘉峪关市与甘肃省广电网络公司对接智慧城市建设项目
查看>>
NavigationViewController 返回到根视图
查看>>