#include <iostream>
#include <string.h>
#include <iostream>
#include <string>
#include <algorithm>
#include <iterator>
using namespace std;
#define N 5
#define M 5
char alphabet[] = { 'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z' };
void Delsymb(char symb, char c[])
{
for (char* a = c, *b = alphabet; *a; ++a, ++b) {
while (*a == symb) ++a;
*b = *a;
}
}
void Createtable(char t[][N], string& keyword)
{
// Составляем таблицу
int cnt = 0;
string::iterator it = keyword.begin();
for (int i = 0; i < N; i++)
for (int j = 0; j < M; j++)
{
if (it != keyword.end())
{
t[j] = (*it);
Delsymb(*it, alphabet);
++it;
}
else
{
t[j] = alphabet[cnt];
cnt++;
}
}
cout << endl << "-----Матрица алфавита-----" << endl;
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
cout << t[j] << " ";
}
cout << endl;
}
}
void remove_spaces(string& str){
for (int i = 0; i < str.length(); i++) {
if (str == ' ') {
str.erase(i, 1);
i--;
}
}
if (str.length() % 2 != 0)
str.insert(str.length(), "X");
cout << str << endl;
}
void Encode(char t[][N], string& mes){
remove_spaces(mes);
char arr[20][2];
int k = 0;
for (int i = 0; i < mes.length() / 2; i++) {
for (int j = 0; j < 2; j++) {
arr[j] = mes[k];
k++;
}
}
///?????
}
int main() {
setlocale(0, "RUS");
char table[N][M];
string keyword, message;
cout << "Ведите ключевое слово --> ";
cin >> keyword;
Createtable(table, keyword);
cout << "Введите слово/фразу, которое хотите зашифровать --> ";
getline(cin, message);
Encode(table, message);
return 0;
}
#include <string.h>
#include <iostream>
#include <string>
#include <algorithm>
#include <iterator>
using namespace std;
#define N 5
#define M 5
char alphabet[] = { 'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z' };
void Delsymb(char symb, char c[])
{
for (char* a = c, *b = alphabet; *a; ++a, ++b) {
while (*a == symb) ++a;
*b = *a;
}
}
void Createtable(char t[][N], string& keyword)
{
// Составляем таблицу
int cnt = 0;
string::iterator it = keyword.begin();
for (int i = 0; i < N; i++)
for (int j = 0; j < M; j++)
{
if (it != keyword.end())
{
t[j] = (*it);
Delsymb(*it, alphabet);
++it;
}
else
{
t[j] = alphabet[cnt];
cnt++;
}
}
cout << endl << "-----Матрица алфавита-----" << endl;
for (int i = 0; i < N; i++) {
for (int j = 0; j < M; j++) {
cout << t[j] << " ";
}
cout << endl;
}
}
void remove_spaces(string& str){
for (int i = 0; i < str.length(); i++) {
if (str == ' ') {
str.erase(i, 1);
i--;
}
}
if (str.length() % 2 != 0)
str.insert(str.length(), "X");
cout << str << endl;
}
void Encode(char t[][N], string& mes){
remove_spaces(mes);
char arr[20][2];
int k = 0;
for (int i = 0; i < mes.length() / 2; i++) {
for (int j = 0; j < 2; j++) {
arr[j] = mes[k];
k++;
}
}
///?????
}
int main() {
setlocale(0, "RUS");
char table[N][M];
string keyword, message;
cout << "Ведите ключевое слово --> ";
cin >> keyword;
Createtable(table, keyword);
cout << "Введите слово/фразу, которое хотите зашифровать --> ";
getline(cin, message);
Encode(table, message);
return 0;
}