随机生成不同长度的字符串

来源:互联网 发布:腾讯大数据 会 11.22 编辑:程序博客网 时间:2024/06/07 14:08
#include<stdio.h>#include<stdlib.h>#include<time.h>#include <iostream>#define random(x) (rand()%x)   //随机数种子using namespace std;int main(){    //freopen("D:\out.txt","w",stdout);   /// 文件存储    //freopen("E:\input.txt","r",stdin);   /// 文件读取    srand((int)time(0));    for(int x=1; x<=10; x++)      //生成10组    {        int len = random(999)+1;   //生成字符串长度 1~1000       for(int j=1;j<=len;j++)        {            int flag = random(2);   //随机大小写            if(flag)            {               printf("%c", 'a'+random(26)) ;            }            else            {                 printf("%c", 'A'+random(26)) ;            }        }        printf("\n");    }    return 0;}

0 0