Problem Description
Eddy usually writes articles, but he likes mixing the Chinese letter uses, for example ' Computer Science ' is written frequ ently "Computer Science" by him, this mistakes lets Eddy ' s 中文版 teacher be extremely discontentment. Now that you have to write a procedure to being able in the Bob article 中文版 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, Blan K Space,numeral as well as each kind of punctuation
Composition, the writing length does not surpass-characters.
Output
For each test case, you should output a only line, after namely the result of transforms the lowercase.
Sample Input
WeLcOmE to Hdoj Acm 2005!
Sample Output
Welcome to HDOJ ACM 2005!
Well.. Water Problem ~ title, is to convert capital letters into lowercase letters.
import java.util.Scanner;publicclass Main{ publicstaticvoidmain(String[] args) { Scanner sc =new Scanner(System.in); while(sc.hasNext()){ String str =sc.nextLine(); System.out.println(str.toLowerCase()); } }}
Hdoj/hdu 1161 Eddy ' s mistakes (uppercase converted to lowercase letters)