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 
  • 相关阅读:
    关于oracle小数和整数混合排序错误问题
    oracle 格式转换 <行转列列转行>
    Postgresql 配置文件详解
    Postgresql 同步流复制
    Postgresql 安装
    mongodb 复制集 维护小结
    mongodb 角色总结
    mongodb 安全认证
    SqlServer实时数据同步到mysql
    批量修改在索引中增加字段
  • 原文地址:https://www.cnblogs.com/ismdeep/p/2582222.html
Copyright © 2011-2022 走看看