Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++를 사용하여 임의의 영숫자 문자열을 어떻게 생성합니까?

<시간/>

이 섹션에서는 C++를 사용하여 임의의 영숫자 문자열을 생성하는 방법을 볼 것입니다. 여기서는 소문자, 대문자 및 숫자(0-9)를 제공합니다. 이 프로그램은 문자를 무작위로 취하여 무작위 문자열을 생성합니다.

Input: Here we are giving the string length
Output: A random string of that length. Example “XSme6VAsvJ”

알고리즘

Step 1:Define array to hold all uppercase, lowercase letters and numbers
Step 2: Take length n from user
Step 3: Randomly choose characters’ n times and create a string of length n
Step 4: End

예시 코드

#include <iostream>
#include <string>
#include <cstdlib>
#include <ctime>
using namespace std;
static const char alphanum[] = "0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz";
int len = sizeof(alphanum) - 1;
char genRandom() { // Random string generator function.
   return alphanum[rand() % len];
}
int main() {
   srand(time(0));
   int n;
   cout << "Enter string length: ";
   cin >> n;
   for(int z = 0; z < n; z++) {    //generate string of length n
      cout << genRandom(); //get random character from the given list
   }
   return 0;
}

출력

Enter string length: 10
XSme6VAsvJ