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 }
  • 相关阅读:
    Cassandra内部架构
    Cassandra数据模型
    windows10 docker安装使用
    vue用async、await实现同步请求
    navicat mysql 书写存储过程并导出成sql
    idea svn 文件还原到指定版本
    vscode vue 去掉语法提示
    elasticsearch regexp查询特殊字符处理
    redis中获取不同自增数的方法
    java Elasticsearch 进行嵌套子聚合
  • 原文地址:https://www.cnblogs.com/ligen/p/4336088.html
Copyright © 2011-2022 走看看