zoukankan      html  css  js  c++  java
  • 第三届山东ACM省赛 n a^o7 !


    #include <iostream>  
    #include <cstdio>  
    #include <string>  
    #include <cstring>  
    #define MAX 500  
    using namespace std;  
    int main (){  
     char temp1[MAX],temp2[MAX],str[MAX];  
     strcpy(temp1," n5!wpuea^o7!usimdnaevoli");  
     strcpy(temp2," usimdnaevolin5!wpuea^o7!");  
     int Len = strlen(temp1);  
     int T;  
     scanf("%d",&T);  
     getchar();  
     int coun=1;  
     while(T--){  
       gets(str);  
       int len=strlen(str);  
       for(int i=0,j=0;i<len;i++){  
        for(j=0;j<Len;j++)  
           if(str[i]==temp1[j])  
              break;  
         if(j<Len) str[i]=temp2[j];  
       }  
       printf("Case %d: ",coun++);  
       for(int i=len-1;i>=0;i--)  
         printf("%c",str[i]);  
       printf("
    ");  
     }  
    return 0;  
    }  
      




  • 相关阅读:
    酒店预订2
    酒店预订1
    软件2
    酒店预定系统
    系统软件构成
    用例图
    软件构成
    业务用例名
    业务用例结果查询
    业务用例导师交流
  • 原文地址:https://www.cnblogs.com/zswbky/p/6718000.html
Copyright © 2011-2022 走看看