1. 程式人生 > >JAVA面試要點011---java中一個數的n次方怎麼寫

JAVA面試要點011---java中一個數的n次方怎麼寫

    JAVA技術交流QQ群:170933152  

第一步我們首先檢視一下Math數學函式的API,可以看到pow()方法返回第一個引數的第二個引數次方,格式為Math.pow(m,n),代表m的n次方,如下圖所示: 

//獲取4位簡訊驗證碼
public static String getVerCode(Integer len) {
    Random random = new Random();
    double c=Math.pow(10,len);
    String fourRandom = random.nextInt(new Double(c).intValue()) + "";
    int randLength = fourRandom.length();
    if (randLength < len) {
        for (int i = 1; i <= len - randLength; i++)
            fourRandom = "0" + fourRandom;
    }
    return fourRandom;
}