旧键盘上坏了几个键,于是在敲一段文字的时候,对应的字符就不会出现。现在给出应该输入的一段文字、以及实际被输入的文字,请你列出肯定坏掉的那些键。

输入格式:

输入在 2 行中分别给出应该输入的文字、以及实际被输入的文字。每段文字是不超过 80 个字符的串,由字母 A-Z(包括大、小写)、数字 0-9、以及下划线 _(代表空格)组成。题目保证 2 个字符串均非空。

输出格式:

按照发现顺序,在一行中输出坏掉的键。其中英文字母只输出大写,每个坏键只输出一次。题目保证至少有 1 个坏键。

输入样例:

  1. 7_This_is_a_test
  2. _hs_s_a_es

输出样例:

  1. 7TI

代码

  1. #include<cstdio>
  2. #include<cstring>
  3. int main() {
  4. char input[81];
  5. char inputActual[81];
  6. bool output[128] = {false}; /* 标记字符是否已经被输出 */
  7. scanf("%s", input);
  8. scanf("%s", inputActual);
  9. for(int i = 0; i < strlen(input); i++) {
  10. int j;
  11. char cInput, cInputActual;
  12. for(j = 0; j < strlen(inputActual); j++) {
  13. cInput = input[i];
  14. cInputActual = inputActual[j];
  15. if(cInput >= 'a' && cInput <= 'z') {
  16. cInput = cInput - 32; /* 转换成大写 */
  17. }
  18. if(cInputActual >= 'a' && cInputActual <= 'z') {
  19. cInputActual -= 32; /* 转换成大写 */
  20. }
  21. if(cInput == cInputActual) {
  22. break;
  23. }
  24. }
  25. if(j == strlen(inputActual) && output[cInput] == false) {
  26. putchar(cInput);
  27. output[cInput] = true;
  28. }
  29. }
  30. return 0;
  31. }