📄 sqrt.c
字号:
/* Copyright (c) 1979 Regents of the University of California */static char sccsid[] = "@(#)SQRT.c 1.3 6/10/81";#include <math.h>doubleSQRT(value) double value;{ if (value < 0) { ERROR("Negative argument of %e to sqrt\n", value); return; } return sqrt(value);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -