function round(x)
y=0;
while y<=x
if y+1>x then
return y;
y=y+1;
end;
end;
Here. Rounding to the larger number.
New here? I'm Roha — want a quick tour?
function round(x)
y=0;
while y<=x
if y+1>x then
return y;
y=y+1;
end;
end;
Here. Rounding to the larger number.