?? d_acosd.c
字號(hào):
#ifndef lint static char sccsid[] = "@(#)d_acosd.c 1.1 92/07/30 SMI"; /* from UCB 1.1" */#endif/* * VMS Fortran compatibility function: * arc cosine in degrees. */#include <math.h>static double pitod = 57.2957795130823208767981548141; /* 180/pi */double d_acosd(x)double *x;{ return pitod*acos(*x);}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -