ORCA-C/Tests/Conformance/C19.3.0.1.CC
2017-10-21 18:40:19 -05:00

32 lines
565 B
C++

/* Conformance Test 19.3.0.1: Verification of ceil, floor, fmod functions */
#include <math.h>
main ()
{
double d1;
d1 = ceil (-3.26);
if (fabs(d1 - (-3.0)) > 0.00001)
goto Fail;
d1 = floor (-3.26);
if (fabs(d1 - (-4.0)) > 0.00001)
goto Fail;
d1 = fmod (-4.4, 2.0);
if (fabs(d1 - (-0.4)) > 0.00001)
goto Fail;
d1 = fmod (-4.4, 0.0);
if (fabs(d1 - (-4.4)) > 0.00001)
goto Fail;
printf ("Passed Conformance Test 19.3.0.1\n");
return;
Fail:
printf ("Failed Conformance Test 19.3.0.1\n");
}