zoukankan      html  css  js  c++  java
  • 【hdu 1161 Eddy's mistakes】

    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 <iostream>
     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 
  • 相关阅读:
    CRM更新行数量汇总的一些注意点
    [转]IT人从业方向
    地球撞击
    如何将Dynamic CRM Activities添加到VS工具箱
    linux本地 yum环境建立
    【转】根据条件修改GridView命令按钮显示的文字
    【转】Asp.net 2.0三层架构的构建与理解
    GridView的常用用法总结说明
    IE中的奇怪问题
    解决打不开 RSA 密钥容器 即:加密web.config中的内容
  • 原文地址:https://www.cnblogs.com/ismdeep/p/2582222.html
Copyright © 2011-2022 走看看