C++官网参考链接:https://cplusplus.com/reference/cmath/erfc/
函数
<cmath>
erfc
C99
double erfc(double x);
float erfcf(float x);
long double erfcl(long double x);
C++11
double erfc(double x);
float erfc(float x);
long double erfc(long double x);
double erfc(T x); // additional overloads for integral types
计算互补误差函数

返回x的互补误差函数值。
互补误差函数等价于:
erfc(x) = 1-erf(x)
C99
头文件