#include #include #include #include using namespace std; int main() { setlocale(LC_ALL, "Russian"); string str; cout << "Введите слово для шифрования: "; cin >> str; random_shuffle(str.begin(), str.end()); ofstream ofs("TextFile1.txt"); ofs << str; ofs.close(); }