JAVA生成四位数的验证码

package com.lsf.main;
public class Test {
    public static void main(String[] args) {
        int authCode = makeAuthCode();
        System.out.println(authCode);
        System.out.println("-----------------------------------");
    }
    public static int makeAuthCode() {
        int authCodeNew = 0;
        authCodeNew = (int) Math.round(Math.random() * (9999 - 1000) + 1000);
        return authCodeNew;
    }
}


你可能感兴趣的:(JAVA生成四位数的验证码)