zoukankan      html  css  js  c++  java
  • 验证码

    import java.util.Random;

    import java.util.Scanner;

    public class Test{

    public static void main (String []args){

           int length=6;

           System.out.println("请输入六位验证码中阿拉伯数字的个数:");

           Scanner scanner=new Scanner(System.in);

           int a=scanner.nextInt();

           if(a>6)

           {

                  for(;a>6;)

                  {

                         System.out.println("输入错误,请再次输入六以内的正整数:");

                         Scanner scannerc=new Scanner(System.in);

                         int c=scannerc.nextInt();

                         a=c;

                  }

           }

          

           int b=length-a;

           if(b>0){

           System.out.println("则字母的位数为:"+b);

           System.out.println("请选择字母的大小写(大写选1     小写选2)");

           Scanner scannerz=new Scanner(System.in);

           int d=scannerz.nextInt();

           if(d>2||d<0)

           {

                  for(;d>2||d<0;)

                  {

                         System.out.println("输入错误,请按要求再次选择选择:");

                         System.out.println("大写选1     小写选2");

                         Scanner scannerc=new Scanner(System.in);

                         int c=scannerc.nextInt();

                         d=c;

                  }

           }

          

           if(d==1){

                  int x[]=new int[a];

                  int Y[]=new int[b];

                  char Y1[]=new char[b];

                  System.out.print("生成的验证码为:");

                  //验证码

                 

                  //数字的输入与输出

                  for(int i=0;i<a;i++){

                  x[i]=(int)(1+Math.random()*(9-1+1));

                  }

                  for(int i=0;i<a;i++){

                  System.out.print(""+x[i]);

                  }     

                 

                  //大写字母的输入与输出

                  for(int j=0;j<b;j++){

                  Y[j]=(int)(65+Math.random()*(90-65+1));

                  Y1[j]=(char)Y[j];

                  System.out.print(""+Y1[j]);

                  }

           }

           else if(d==2){

                  int x[]=new int[a];

                  int Y[]=new int[b];

                  char Y1[]=new char[b];

                  System.out.print("生成的验证码为:");

                  //验证码

                 

                  //数字的输入与输出

                  for(int i=0;i<a;i++){

                  x[i]=(int)(1+Math.random()*(9-1+1));

                  }

                  for(int i=0;i<a;i++){

                  System.out.print(""+x[i]);

                  }     

                 

                  //小写字母的输入与输出

                  for(int j=0;j<b;j++){

                  Y[j]=(int)(97+Math.random()*(122-97+1));

                  Y1[j]=(char)Y[j];

                  System.out.print(""+Y1[j]);

                  }

           }

           }

           else if (b<=0){

           System.out.print("生成的验证码为:");

           int x=(int)(1+Math.random()*(999999-1+1));

           System.out.println(""+x);

           }

    }

    }

  • 相关阅读:
    wpf.xaml.behavior
    为你的硬件自动化统一构建root和firmware
    Dsm as deepin mate(2):在阿里云上真正实现单盘安装运行skynas
    Boot界的”开源os“ : coreboot,及再谈云OS和本地OS统一装机的融合
    0pe单文件夹,grub菜单全外置版
    阿里云上利用virtiope+colinux实现linux系统盘动态无损多分区
    比WEB更自然,jupyter用于通用软件开发的创新意义:使任何传统程序秒变WEB
    编程实践选型通史:*坦无架构APP开发支持与充分batteryincluded的微实践设施
    除了LINUX,我们真的有可选的第二开源操作系统吗?
    聪明的Mac osx本地云:同一生态的云硬件,云装机,云应用,云开发的完美集
  • 原文地址:https://www.cnblogs.com/yishaui/p/9751969.html
Copyright © 2011-2022 走看看