码迷,mamicode.com
首页 > 其他好文 > 详细

随机生成26个小写字母和26个大写字母

时间:2014-07-01 08:05:02      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:for   io   amp   size   har   ar   

#include<stdio.h>

char RandString();

int main( void )
{
    int i=0;
    char cTemp;
    char sKey[9];

    memset(&cTemp, 0, sizeof(cTemp));
    memset(sKey, 0, sizeof(sKey));

    srand((unsigned )time(NULL));
    for(; i<8; i++)
    {
        cTemp = RandString();
        sKey[i] = cTemp;
    }
    sKey[8]=‘\0‘;

    printf("sKey[%s]\n", sKey);

    return 0;

}

char RandString()
{
    int j = rand()%2;
    char temp;
    int m = 0;

    if( j==0 )
    {
        temp =‘a‘;
    }
    else
    {
        temp=‘A‘;
    }

    m = rand()%26;
    temp = temp + m;

    return temp;
}


运行结果:

sKey[ycePuTLP]

随机生成26个小写字母和26个大写字母,布布扣,bubuko.com

随机生成26个小写字母和26个大写字母

标签:for   io   amp   size   har   ar   

原文地址:http://blog.csdn.net/ssz912728941/article/details/36001857

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!