-
-
Notifications
You must be signed in to change notification settings - Fork 4
round_
villares edited this page May 24, 2020
·
4 revisions
float x = 9.2;
int rx = round(x); // Atribui 9 à rx
float y = 9.5;
int ry = round(y); // Atribui 10 à ry
float z = 9.9;
int rz = round(z); // Atribui 10 à rz
Calcula o inteiro mais próximo ao valor do parâmetro. Por exemplo, round(9.2) retorna 9.
round(valor)
Parâmetros valor float
int
Web & Applicações
A referência de Processing está sob a licença Creative Commons BY-NC conforme indicado aqui. Esta Wiki-tradução é baseada na tradução e adaptação para o Português do Brasil do professor Luiz Ernesto Merkle