You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
plfbyct68/fengshiji1.java

17 lines
254 B

5 years ago
package fengshiji;
5 years ago
import java.math.*;
public class fengshiji1
{
public double duishu(double a,double b)
{
double res = log(a, b);
return res;
}
5 years ago
5 years ago
private double log(double a, double b) {
double h=Math.log10(b)/Math.log10(a);
return h;
}
5 years ago
}