zoukankan      html  css  js  c++  java
  • A1084. Broken Keyboard (20)

    On a broken keyboard, some of the keys are worn out. So when you type some sentences, the characters corresponding to those keys will not appear on screen.

    Now given a string that you are supposed to type, and the string that you actually type out, please list those keys which are for sure worn out.

    Input Specification:

    Each input file contains one test case. For each case, the 1st line contains the original string, and the 2nd line contains the typed-out string. Each string contains no more than 80 characters which are either English letters [A-Z] (case insensitive), digital numbers [0-9], or "_" (representing the space). It is guaranteed that both strings are non-empty.

    Output Specification:

    For each test case, print in one line the keys that are worn out, in the order of being detected. The English letters must be capitalized. Each worn out key must be printed once only. It is guaranteed that there is at least one worn out key.

    Sample Input:

    7_This_is_a_test
    _hs_s_a_es
    

    Sample Output:

    7TI
    
     1 #include <stdio.h>
     2 #include <stdlib.h>
     3 #include <algorithm>
     4 #include <string.h>
     5 using namespace std;
     6 
     7 
     8 
     9 
    10 int main(int argc, char* argv[])
    11 {
    12     char str1[100],str2[100];
    13      bool hashtable[128]={false};
    14       gets(str1);
    15       gets(str2);
    16     int len1=strlen(str1);
    17     int len2=strlen(str2);
    18 for(int i=0;i<len1;i++)
    19 {
    20     int j;
    21     char c1,c2;
    22     for(j=0;j<len2;j++)
    23     {
    24     c1=str1[i];
    25     c2=str2[j];
    26     if(c1>='a'&&c1<='z')c1-=32;
    27     if(c2>='a'&&c2<='z')c2-=32;
    28     if(c1==c2)break;
    29     }
    30     if(j==len2&&hashtable[c1]==false)
    31     {
    32     printf("%c",c1);
    33     hashtable[c1]=true;
    34     } 
    35 
    36 }
    37     system("pause"); 
    38     return 0;
    39 }
  • 相关阅读:
    南桥-- 算法训练 2的次幂表示
    Ajax系列之中的一个:ajax旧貌换新颜
    ASP.NET综合管理ERP系统100%源代码+所有开发文档
    创业建议干货分享
    读取properties属性文件——国际化
    測试赛C
    Android 自己定义ViewGroup手把手教你实现ArcMenu
    【VBA研究】利用DateAdd函数取上月或上年同期的日期
    【Java集合源代码剖析】TreeMap源代码剖析
    openstack neutron L3 HA
  • 原文地址:https://www.cnblogs.com/ligen/p/4336088.html
Copyright © 2011-2022 走看看