My code thus far : I dont know why in the world it doesnt see the Math.pow
or let me do the exponents. Says that it
cannot find class Math symbol. Location : Package java.util
import java.util.Math;
class Test {
public static void main(String[] args) {
double result = Math.pow(4 , 2);
System.out.printf("result");
}
}