Compare commits

...

No commits in common. 'xyh' and 'master' have entirely different histories.
xyh ... master

@ -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;
}
}

@ -1,12 +0,0 @@
public double mysin(double x) {
return Math.sin(x);
}
public double mycos(double x) {
return Math.cos(x);
}
public double mytan(double x) {
return Math.tan(x);
}
Loading…
Cancel
Save