float Math.log(float x);
对数
计算以e为底的自然对数
void main() { printf("1/7=%f", Math.exp(Math.log(1.0) - Math.log(7.0))); getchar(); }