Pro.ID1119 Title给点颜色我看看 Title链接http://10.20.2.8/oj/exercise/problem?problem_id=1119 AC343 Submit630 Ratio54.44% 时间&空间限制描述建立一个指针数组,存储n种颜色的单词,然后把它们按字典序排序后输出。 Create an array of pointer to store n words corresponding to n colors, then output them after being sorted in lexicographical. (酱紫翻译准不准确?) 输入第一行是单词的个数n ( 0 < n ≤ 100 ),然后是n种颜色的英文单词,一个单词一行。 每个单词不超过100个字符,且中间不含空格。 输出Description 建立一个指针数组,存储n种颜色的单词,然后把它们按字典序排序后输出。 Create an array of pointer to store n words corresponding to n colors, then output them after being sorted in lexicographical. (酱紫翻译准不准确?) Input 第一行是单词的个数n ( 0 < n ≤ 100 ),然后是n种颜色的英文单词,一个单词一行。 每个单词不超过100个字符,且中间不含空格。 Output 对这10个单词排序后输出,一个单词一行。 Sample Input 5 Sample Output blue Hint 本题用于练习“指针数组”。 Author 样例输入5 样例输出blue 提示本题用于练习“指针数组”。 作者 |