?? 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 + -