Вот только программа на C++
#include
#include
using namespace std;int main() { setlocale(LC_ALL, "Russian");string key = "key", buffer;cout << "Введите последовательность: ";cin >> buffer;bool *bitmap = new bool[key.length()];for (int j = 0; j < key.length(); ++j) bitmap[j] = false;for(int i = 0; i < buffer.length(); ++i)for(int j = 0; j < key.length(); ++j) if (buffer[i] == key[j]) bitmap[j] = true;for (int j = 0; j < key.length(); ++j){ cout << "\"" << key[j] << "\""; if (bitmap[j]) cout << " есть!" << endl; else cout << " нет!" << endl;}<br>system("pause");
return 0