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 }
  • 相关阅读:
    JS基础_自增和自减
    计算机组成原理
    SyntaxHighlighter
    10个经典的C语言面试基础算法及代码
    知名互联网公司面试题
    计算机网络基础知识(笔试题)
    面试准备之常见上机题目搜罗
    小米2013年校园招聘笔试题-简单并查集
    2014华为上机试题
    C++学习笔记
  • 原文地址:https://www.cnblogs.com/zzw1024/p/11337111.html
Copyright © 2011-2022 走看看