Uva Online Judge
文章平均质量分 77
●杨毅
技术交流Q群:570968411
展开
-
Palindromes
/* 错了好几次,原因是忘了考虑单个字符的情况,还有就是当长度为奇数时 最中间的那个影响很大 */ #include #include #include char szChChReverse[26] = {'A',32,32,32,'3', 32,32,'H','I','L', 32,'J','M',32,'O', 32,32,32,'2原创 2013-11-05 23:22:11 · 491 阅读 · 0 评论 -
10361 - Automatic Poetry
/*题目大意: 给一对字符串 按原样输出除了''的第一行字符串 输出第二行时,交换两个<>的内容*/ #include #include #include /*第一个问题是把字符串的''去掉,然后原样输出*/ void toPoetry(const char szStr1[],const char szStr2[]) { //char* iPos = strchr(szS原创 2013-11-06 22:09:59 · 497 阅读 · 0 评论 -
10115 Automatic Editing
/* Rule Find Replace-by 1. ban bab 2. baba be 3. ana any 4. ba b hind the g Replace the first occurrence of the find string within the text by the replace-by string, then try to perform the sam原创 2013-11-14 13:41:29 · 501 阅读 · 0 评论