Pro.ID21621 TitleAbbreviation Title链接http://10.20.2.8/oj/exercise/problem?problem_id=21621 AC2 Submit5 Ratio40.00% 时间&空间限制描述As we know, we often use a short sequence of characters in place of some words with a long name. For example, ACM is an abbreviation of "Association for Computing Machinery". Now we are using an acronymic method to get the abbreviation. An acronym is generated from a long name by capitalizing the first letter of every word in the name and concatenating them together. There is an exception: some words are ignored when generating the abbreviation. These words (case insensitive) meet the following rules:
Your job is to get the abbreviation of a given string by using the acronymic method. 输入The first line of the input is a positive integer T. T is the number of test cases followed. Each test case contains a string S with its length no greater than 100, representing the sequence of words to be abbreviated. The words consist of only alphabetic letter. There is only one space between the words, and there is no leading or trailing spaces in the string. 输出Description As we know, we often use a short sequence of characters in place of some words with a long name. For example, ACM is an abbreviation of "Association for Computing Machinery". Now we are using an acronymic method to get the abbreviation. An acronym is generated from a long name by capitalizing the first letter of every word in the name and concatenating them together. There is an exception: some words are ignored when generating the abbreviation. These words (case insensitive) meet the following rules:
Your job is to get the abbreviation of a given string by using the acronymic method. Input The first line of the input is a positive integer T. T is the number of test cases followed. Each test case contains a string S with its length no greater than 100, representing the sequence of words to be abbreviated. The words consist of only alphabetic letter. There is only one space between the words, and there is no leading or trailing spaces in the string. Output For each test case, output the abbreviation of S. Sample Input 5 Sample Output ACM Source 样例输入5 样例输出ACM 作者 |