float Math.acos(float x);
反余弦
计算arccos(x),返回弧度值
void main() { printf("%f", Math.acos(0.5) * 3); getchar(); }