码迷,mamicode.com
首页 > 其他好文 > 详细

poj2538---字符匹配(映射)

时间:2015-06-16 18:57:51      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
#include <stdio.h>
#include <stdlib.h>
#include<string.h>

int main()
{
    int i,j;
    char arr[60],str[] = {"`1234567890-=QWERTYUIOP[]\\ASDFGHJKL;‘ZXCVBNM,./"};
    while(gets(arr) != NULL)
    {
        for(i=0;i<strlen(arr);i++)
        {
            if(arr[i] ==  )
                putchar( );
            for(j=0;j<strlen(str);j++)

            {
                if(arr[i] == str[j])
                    printf("%c",str[j-1]);
            }

        }
        printf("\n");
    }
    printf("\n");
    return 0;
}
View Code

 

poj2538---字符匹配(映射)

标签:

原文地址:http://www.cnblogs.com/gabygoole/p/4581299.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!