|
||||||||||
TypingTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1535 Accepted Submission(s): 891 Problem Description A boy named Pirates who wants to develop typing software finds that it¡¯s hard to judge whether a letter is lowercase or uppercase. He searches lots of information about it, and find out the solution, but he doesn¡¯t know how to realize it. Can you help him? The Solution: 1: If the caps lock is on, and the letter is typed with shift key down, the letter is lowercase, otherwise it¡¯s uppercase. 2: If the caps lock is off, and the letter is typed with shift key down, the letter is uppercase, otherwise it¡¯s lowercases. Input The first line is an integer t, which is the number of test case in the input data file. Each test case begins with an integer n (0<n<=100), which means there follow n lines. For each line, if there is only a letter, it means the key is typed, and if there begins with a string ¡°Shift¡±, then will follows one letter, it means the letter is typed with shift key, and if there begins with a string ¡°Caps¡±, it means the caps lock key is typed and changes the mood of caps lock. The entire letter is lowercase. At the beginning of each test case, you can assume that the caps lock is off. Output Please output a string which the user typed. Sample Input
Sample Output
Author Dellenge Source | ||||||||||
|