commit 146245d2171b63aa8f1aa235bc8e41117be6afbc Author: pn9mthlro <1176602295@qq.com> Date: Thu Aug 6 19:27:01 2020 +0800 mypow.java diff --git a/mypow.java b/mypow.java new file mode 100644 index 0000000..e162dcd --- /dev/null +++ b/mypow.java @@ -0,0 +1,7 @@ +public class mypow{ + double e,x; +public double mypow(double e,double x) { + double ans=Math.pow(e, x); + return ans; + } +} \ No newline at end of file