> For the complete documentation index, see [llms.txt](https://chaoses-ib.gitbook.io/directory-opus/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://chaoses-ib.gitbook.io/directory-opus/manual/reference/evaluator/round.md).

# Round

\<evalcmd> Round && double && Rounded input value. && value && double && Input value. \</evalcmd>

Rounds the input value to the nearest integer, or away from zero if equidistant.

//<Example://>

```
Output( Round(1.4) + " " + Round(-1.5) + " " + Round(1.6) );
--> 1.000000 -2.000000 2.000000
```

*See also:*\
[ceil](/directory-opus/manual/reference/evaluator/ceil.md)\
[floor](/directory-opus/manual/reference/evaluator/floor.md)
