1.2 Dual Palindromes
摘要:
枚举的数据不大于4字节整形,最多用33位char就可以储存其二进制了。有上一题的基础。。这题就很简单了。。而且以前明明写过对初学者很难的mirrored palindrome 0 0网上有说进制转换用Itoa,不过这尼玛不是ansi c的,而且2-16进制= =/*ID:y7276571LANG: CTASK: dualpal*/#include<stdio.h>#include<string.h>#define MAXLEN 50char str[MAXLEN];int ispal(char *s){ int i, len = strlen(s); for(i = 0 阅读全文
posted @ 2011-11-04 13:17 嗜血魂K 阅读(163) 评论(0) 推荐(0) 编辑