📄 cos.c
字号:
/* Copyright (c) 1982 Regents of the University of California */static char sccsid[] = "@(#)COS.c 1.1 2/8/82";#include <math.h>extern int errno;doubleCOS(value) double value;{ double result; errno = 0; result = cos(value); if (errno != 0) { ERROR("Cannot compute cos(%e)\n", value); return; } return result;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -