Код: Выделить всё
double BoZo_abs(double x)
{
if (x<0.0) {
return -x;
}
return x;
}
int main() {
double q = BoZo_abs(-.0);
if (std::signbit(q)) {
std: :p rintf("BoZo !!!");
}
q = std::fabs(-.0);
if (std::signbit(q)) {
std: :p rintf("BoZo !!!");
}
}