zoukankan      html  css  js  c++  java
  • SDUT 2413:n a^o7 !

    n a^o7 !

    Time Limit: 1000MS Memory limit: 65536K

    题目描述

     

    All brave and intelligent fighters, next you will step into a distinctive battleground which is full of sweet and happiness. If you want to win the battle, you must do warm-up according to my instructions, which can make you in the best state preparing to fight. Now please relax yourself and enjoy the good moment. Before you raise your sharp sword to the enemy who guards the battleground, please allow me to tell you a true and romantic story about a samurai like you. 
    Samurai hh fell in love with girl ss, who is charming and demure. He realized the truth that he must spend his remaining life with ss, and resolved to pursue the hard-won affection. One day hh wrote a letter to ss, when she opens the letter with excitement her mind was in tangle. She found herself completely not to figure out the meaning about the letter, which said that "n 55!w ! pue n a^o7 ! n paau !". ss also immersed herself in guessing the meaning of that letter for a long time because of her adore to hh. Finally she called hh to ask the meaning of the letter. On the other side of the phone, hh was too nervous to say. Gradually he calmed down himself and told ss to reverse the letter and read it. Then on both ends of the phone comes the voice at the same time "i need u i love u and i miss u".
    ss wants to tell each of you however you are Brave And Skilled, you shouldn't forget to express your loyal love and romantic feelings to your prince or princess.
    Now the horn sounds for battle,do it by the following input and output. I think each of you will get an "Accepted" in this battle with pleasant mood.

    输入

    Input contains an integer T in the first line, and then T lines follow .Each line contains a message (only contain 'n5!wpuea^o7!' and 
    ' '(space)), the message's length is no more than 100.

    输出

    Output the case number and the message. (As shown in the sample output)

    示例输入

    2n 55!w ! pue n a^o7 ! n paau !
    n5!wpuea^o7

    示例输出

    Case 1: i need u i love u and i miss u
    Case 2: loveandmisu

    颠倒一串字符!

    #include <iostream>  
    #include <stdio.h>  
    #include <math.h>  
    #include<string.h>  
    using namespace std;  
    char *s="n5!wpuea^o7";  
    char *d="usimdnaevol ";  
    int panduan(char e)  
    {  
        for(int i=0;i<strlen(s);i++)  
        {  
            if(s[i]==e)return i;  
        }  
        return 11;  
      
    }  
    int main()  
    {  
        char c[105],k[105]={0};  
        int n,kk=1;  
        scanf("%d%*c",&n);  
        while(n--)  
        {  
            gets(c);  
            printf("Case %d: ",kk++);  
            int j=0;  
            for(int i=0;i<(int)strlen(c);i++)  
            {  
                k[j++]=d[panduan(c[i])];  
            }  
            for(--j;j>=0;j--)printf("%c",k[j]);  
            printf("
    ");  
        }  
        return 0;  
    }  


  • 相关阅读:
    JS浏览器兼容问题
    jsN位字母数字混合验证码
    js将数字变成数组
    JS跟随鼠标移动的提示框
    Grand Central Dispatch(GCD)编程基础
    C#学习之修饰符
    .NET 开源项目介绍及资源推荐:单元测试
    万般皆LINQ
    .NET 开源项目介绍及资源推荐:IOC容器篇
    Type.GetType(string typeName) returns null !?
  • 原文地址:https://www.cnblogs.com/im0qianqian/p/5989353.html
Copyright © 2011-2022 走看看