#include
5 #include
6 #include
7
8 #define MAXSIZE 7
9
10 /*函数名:Cstr()
11 * 函数参数:无
12 * 函数返回值:0
13 * 函数功能:随机输出7个大小写字母
14 */
15 int Cstr()
16 {
17 int i;
18 char cStr[MAXSIZE]={0};
19 srand(time(NULL));
20 for (i = 0; i < MAXSIZE; i++)
21 {
22 if (rand() % 2)
23 {
24 cStr[i] = rand()%26 + 'a';
25 }
26 else
27 {
28 cStr[i]= rand()%26 + 'A';
29 }
30 }
31 for (i = 0; i < MAXSIZE; i++)
32 {
33 printf("%c", cStr[i]);
34 }
35 return 0;
36 }
阅读(934) | 评论(0) | 转发(0) |