Fork me on GitHub

随笔分类 -  算法

摘要:public class Solution { public static void main(String[] args) { System.out.println(qpow(5,6)); } public static int qpow(int x,int n) { int res =1; wh 阅读全文
posted @ 2020-09-02 10:26 努力不会错哦 阅读(88) 评论(0) 推荐(0)