이 튜토리얼에서는 임의의 알파벳을 생성하는 프로그램에 대해 논의할 것입니다.
이를 위해 고정된 크기의 배열/문자열을 사용하고 rand() 함수를 사용하여 임의의 알파벳 문자열을 생성합니다.
예시
#include <bits/stdc++.h> using namespace std; const int MAX = 26; //generating a string of random alphabets string gen_random(int n){ char alphabet[MAX] = { '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' }; string res = ""; for (int i = 0; i < n; i++) res = res + alphabet[rand() % MAX]; return res; } int main(){ srand(time(NULL)); int n = 7; cout << gen_random(n) << endl; return 0; }
출력
gwqrgpa