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 
  • 相关阅读:
    讯时新闻系统再探
    三顾讯时对讯时新闻发布系统的艰难突破
    MsSQL注入猜解数据库技术
    提取中国IP段信息
    翻译杂感 via刘未鹏
    学习密度与专注力
    Cross Compilation Toolchains
    RHEL/CentOS 6.0使用第三方软件库(EPEL与RPMForge、RPMFusion软件库)
    一个很好的shell配置文件
    Cloud Computing
  • 原文地址:https://www.cnblogs.com/ismdeep/p/2582222.html
Copyright © 2011-2022 走看看