float Math.exp(float x);
指数
计算e的x次方
void main() { printf("1/7=%f", Math.exp(Math.log(1.0) - Math.log(7.0))); getchar(); }