`
leilove321
  • 浏览: 1233 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
文章分类
社区版块
存档分类
最新评论
文章列表
问题思考:不用递归,写出快速求幂的程序。 public class Test4 { public static void main(String[] args) { System.out.println(mutil(5, 11)); System.out.println(fortil(1233, 12)); } //递归方法 private static long mutil(long n, int x) { if (x == 0) { return 1; } else { return n * mutil(n, x - 1); } ...
Global site tag (gtag.js) - Google Analytics