atan.c

来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C语言 代码 · 共 22 行

C
22
字号
/* Copyright (c) 1982 Regents of the University of California */static char sccsid[] = "@(#)ATAN.c 1.1 2/8/82";#include <math.h>extern int errno;doubleATAN(value)	double	value;{	double result;	errno = 0;	result = atan(value);	if (errno != 0) {		ERROR("Argument %e is out of the domain of atan\n", value);		return;	}	return result;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?