float Math.atan(float x);
反正切
计算arctan(x),返回弧度值
void main() { printf("%f", Math.atan(1.0) * 4); getchar(); }