Ошибка Angular 2: 404 при обновлении через браузер [дубликат]

#include <math.h>
#include <limits>

int main()
{
  double x, y, n;
  x = SOME_VAL;
  y = modf( x, &n ); // splits a floating-point value into fractional and integer parts
  if ( abs(y) < std::numeric_limits<double>::epsilon() )
  {
    // no floating part
  }
}
152
задан Peter Mortensen 14 September 2017 в 18:17
поделиться