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 }
  • 相关阅读:
    xcode6创建工程时 默认去掉了PrefixHeader.pch
    KVC访问私有成员
    Apple Watch 中Context Menu的应用
    Apple Watch应用创建
    NSURLConnection加载数据并展示
    UIView 的exclusiveTouch clipsToBounds和transform属性
    Shell的一些基本用法
    NS_ENUM和NS_OPTIONS
    iOS国际化时遇到错误: the data couldn't be read because it isn't in the correct format.
    iOS8中UIAlertController的使用
  • 原文地址:https://www.cnblogs.com/ligen/p/4336088.html
Copyright © 2011-2022 走看看