1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
#include <chrono>
#include <iostream>
#include <random>
int main()
{
std::mt19937 eng {
static_cast<unsigned>(
std::chrono::high_resolution_clock::now().time_since_epoch().count()
)
};
char letters[] { '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', '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' };
constexpr int ROW { 5 };
constexpr int COL { 5 };
char matrix[ROW][COL];
for(int i {}; i < ROW; ++i) {
for(int j {}; j < COL; ++j) {
std::uniform_int_distribution<> dst(1, 52);
int index { dst(eng) };
for(/**/; letters[index] == '\0'; index = dst(eng)) {}
matrix[i][j] = letters[index];
letters[index] = '\0';
}
}
for(int i {}; i < ROW; ++i) {
for(int j {}; j < COL; ++j) {
std::cout << matrix[i][j];
}
std::cout << '\n';
}
std::cout << '\n';
}
|