• 【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 
  • 相关阅读:
    spark源码阅读之network(2)
    LoadRunner使用问题
    IDEA小技巧:添加代码快捷方式
    ByteUnit
    利用python列出当前目录下的所有文件
    python识别图片中的信息
    2019年3月2日-小雨.md
    2019年3月1日-日记
    2019年2月11日-日记
    2019年2月10日-日记
  • 原文地址:https://www.cnblogs.com/ismdeep/p/2582222.html
Copyright © 2020-2023  润新知