1: //TestMathFunctions.java 2: 3: public class TestMathFunctions 4: { 5: public static void main(String args[]) 6: { 7: System.out.println(Math.pow(3.0, 2.0)); 8: } 9: } 10: