问题描述
- C语言 怎么生成随机字符串 求解
-
我想要写一个 随机生成字符串的方法,该怎么写呢(用C/C++)
解决方案
写一个给你
#include <stdio.h>
void genrnd(char * buff, int n)
{
char metachar[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
srand(time(NULL));
for (int i = 0; i < n - 1; i++)
{
buff[i] = metachar[rand() % 62];
}
buff[n - 1] = '';
}
int main()
{
char r[10];
genrnd(r, 10);
printf("%s
", r);
}
G1JxVeNpY
解决方案二:
C语言产生随机字符串
C语言产生随机字符串
如何用Python语言生成随机字符串
时间: 2024-10-25 02:30:21