一开始后面两个点老是不过,把数组的长度由127改成126就过了,我起初觉得这无伤大雅,现在也觉得。。。。可能是有什么地方我没注意到吧@_@
其他地方没什么难度
//This is a sample test
//to show you_How it works
//
//This ampletowyu_Hrk
#include<iostream>
#include<string>
#include<cstdio>
using namespace std;
int counter[126] = { 0 };
int main()
{
int n, m, i, j, k;
string a, b, c;
getline(cin, a);
getline(cin, b);
c = a + b;
for (i = 0; i < c.length(); i++)
{
counter[c[i] - '0']++;
}
for (i = 0; i < c.length(); i++)
{
if (counter[c[i] - '0'] > 0)
{
cout << c[i];
counter[c[i] - '0'] = 0;
}
}
return 0;
}