1
0
mirror of https://github.com/abakh/nbsdgames.git synced 2024-12-04 14:46:22 -05:00

also some stupid mistakes in round()

This commit is contained in:
Jens Staal 2020-06-14 07:28:15 +02:00
parent e600887248
commit 6b83ef7b1b

View File

@ -26,16 +26,18 @@ NOTE: This program is only made for entertainment porpuses. The puzzles are gene
int round(float x)
{
int y=(int) x;
if x>0
if x-y >0.5
return (int)(x + 0.5);
int z;
if(x > 0)
if(x-y > 0.5)
z = (int)(x + 0.5);
else
return y;
if x<0
if x-y <-0.5
return int(x -0.5);
z = y;
if(x<0)
if(x-y < -0.5)
z = int(x -0.5);
else
return y;
z = y;
return z;
}
#endif