Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

โปรแกรม C++ สร้างตัวอักษรสุ่ม


ในบทช่วยสอนนี้ เราจะพูดถึงโปรแกรมสร้างตัวอักษรแบบสุ่ม

สำหรับสิ่งนี้ เราจะมีขนาดคงที่ของอาร์เรย์/สตริง และใช้ฟังก์ชัน 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