float Math.asin(float x);
反正弦
计算arcsin(x),返回弧度值
void main() { printf("%f", Math.asin(0.5) * 6); getchar(); }