public class homework
{
    public static void intPow(int a, int b)
    {
        Math.pow(a,b);
    }
    public static void main(String args[])
    {
        intPow();
    }
}   
I'm trying to learn how to create a method, but I keep getting 10 ; expected errors. I know this code isn't correct, but I can't seem to find how to create a method correctly. In this case I'm trying to create a method that returns a^b.
 
     
     
     
     
     
    