Exponent Function

Lesson 22
Author : Afrixi
Last Updated : October, 2017


Java - Programming Language
This course covers the basics of programming in Java. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!
Table of Content

Code

Copypublic static int pow(int baseNum, int powNum){
     int result = 1;
     for(int i = 0; i < powNum; i++){
          result = result * baseNum;
     }
     return result;
}