题目描述
输入一个字符串,求出该字符串包含的字符集合
输入描述:
每组数据输入一个字符串,字符串最大长度为100,且只包含字母,不可能为空串,区分大小写。
输出描述:
每组数据一行,按字符串原有的字符顺序,输出字符集合,即重复出现并靠后的字母不输出。
示例1
输入

abcqweracb
输出
abcqwer

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <map>
using namespace std;
int main()
{
    string str;
    while(cin >> str){
        if(str.size() == 0)
            return 0;
        int ma[256] = {0};
        string res;
        for(char i:str)
        {
            if(ma[i] == 0)
            {
                ma[i] = 1;
                res+=i;
            }
        }
    cout << res<<endl;
}
}