zoukankan      html  css  js  c++  java
  • PAT甲级——A1084 Broken Keyboard

    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 <iostream>
     2 #include <string>
     3 using namespace std;
     4 string str1, str2;
     5 int main()
     6 {
     7     cin >> str1 >> str2;
     8     string res="";
     9     char c;
    10     for (int i = 0, j = 0; i < str1.length(); ++i)
    11     {
    12         while (j < str2.length() && str1[i] == str2[j])
    13         {
    14             ++i;
    15             ++j;
    16         }
    17         c = toupper(str1[i]);
    18         if (res.find(c) == -1)
    19             res += c;
    20     }
    21     cout << res << endl;
    22     return 0;    
    23 }
  • 相关阅读:
    NodeJS、NPM安装配置步骤(windows版本)
    23种设计模式全解析
    js阻止浏览器默认事件
    js获取不同浏览器盒子宽度高度
    H5之重力感应篇
    JS中的call()和apply()方法
    html学习笔记
    less(css)语言快速入门
    power designer简单教程
    Strom开发配置手册
  • 原文地址:https://www.cnblogs.com/zzw1024/p/11337111.html
Copyright © 2011-2022 走看看