登录时产生验证码的问题。首先产生随机数,然后让产生的随机数做为字符库(提前做好的数字字母字符串)的下标,就这样从字符库中随机提取出组成的小字符串就是最简单的字符串了,当然你可以自己创建字符库的内容。
以下是用C语言编写产生验证码和验证验证码的过程的代码:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
#define N 5 void identifying_Code (char str[],int n) {
int i,j,len;
char pstr[] = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJLMNOPQRSTUVWXYZ";
len = strlen(pstr); //求字符串pstr的长度
srand(time());
for (i = ;i < n; i++) {
j = rand()%len; //生成0~len-1的随机数
str[i] = pstr[j];
}
str[i] = '\0';
} int main() {
int n = ;
int flag = ;
char code[N+],str[N+];
while (n) {
identifying_Code (code,N);
printf("请输入验证码<您还剩%d机会>:%s\n",n,code);
scanf("%s",str);
n--;
if(strcmp(code,str) == ) { //区分大小写的验证码
n = ;
flag = ;
printf("验证正确.\n");
}
}
if (flag == )
printf("对不起,您的账号已锁定.\n");
return ;
}
还有一种直接调用库函数的,比上面的写的代码还简单点,有兴趣的码友可以参考一下。
#include <cstdio>
#include <ctime>
#include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;
int main () {
int m, n;
srand (time (NULL));//初始化
n = rand() % ; //生成两位数的随机数
cout << n << endl;
return ;
}
rand()函数需要的C语言头文件为 stdlib.h, c++的为 algorithm,当然也可以写cstdlib。它不需要参数就可以产生随机数。这里可以产生字母的,就是根据ASCII表。
欢迎码友评论,我会不断的修改使其变得完美,谢谢支持。