import java.util.Random;
public class yanzhengma{
//随机产生一个五位数的验证码
public static void main(String[] args){
//大小写字母都放到数组中
char[] chs = new char[52];
for(int i=0;i<chs.length;i++){
if(i<=25){
//添加小写字母
chs[i] = (char)(97+i);
}else{
//添加大写字母
chs[i] = (char)(65+i-26);
}
}
String result = "";
//随机抽取四次
//随机抽取数组中的索引
Random r = new Random();
for(int i =0;i<4;i++){
int randomIndex = r.nextInt(chs.length);
result = result + chs[randomIndex];
}
//随机抽取一个数字
int number = r.nextInt(10);
result = result + number;
System.out.println(result);
}
}
随机产生一个五位数的验证码
最新推荐文章于 2024-11-04 22:26:34 发布