回文词

#include <stdio.h>
#include <string.h>
#include <ctype.h>
const char* rev = "A   3  HIL JM O   2TUVWXY51SE Z  8 ";
const char* msg[] = {"not a palindrome","a regular palindrome","a mirrored string","a mirrored palindrome"};
//常量指针,指向的常量不能变
//指针常量,int *const b = &a;指针是一个常量,指针不变
char r(char ch)
{
    if(isalpha(ch)) //isalpha(),是否为英文,大写返回2,小写返回1,不是返回0
        return rev[ch - 'A']; //单个字符单引号
    else
        return rev[ch - '0' + 25];
}
int main()
{
    char s[30];
    while(scanf("%s",s) == 1)
    {
        int len = strlen(s);
        int p = 1, m = 1;
        for(int i = 0; i < (len-1)/2; i++)
        {
            if(s[i] != s[len-i-1]) p = 0;
            if(r(s[i]) != s[len-1-i]) m = 0;
        }
        printf("%s -- is %s.\n\n", s, msg[m*2+p]); //注意!巧妙
    }
    return 0;
}

结果:
NOTAPALINDROME
NOTAPALINDROME -- is not a palindrome.

ISAPALINILAPASI
ISAPALINILAPASI -- is a regular palindrome.

2A3MEAS
2A3MEAS -- is a mirrored string.

ATOYOTA
ATOYOTA -- is a mirrored palindrome.

输入一个字符串,判断它是否为回文串(abba)以及镜像串(3AIAE)。


CharacterReverseCharacterReverseCharacterReverse
AAMMYY
B N Z5
C OO11
D P 2S
E3Q 3E
F R 4 
G S25Z
HHTT6 
IIUU7 
JLVV88
K WW9 
LJXX  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值