CodingBat powerN Solution April 05, 2017 Get link Facebook X Pinterest Email Other Apps public int powerN(int base, int n) { if (n==1) return base;; return base*powerN(base,n-1);} Comments
Comments
Post a Comment