Programar em C/Operações matemáticas (Avançado): diferenças entre revisões

[edição não verificada][edição não verificada]
Conteúdo apagado Conteúdo adicionado
Thiagol (discussão | contribs)
Thiagol (discussão | contribs)
Linha 139:
==Nearest integer, absolute value, and remainder functions==
 
===TheAs funções <code>ceil</code> ande <code>floor</code> functions===
 
The <code>ceil</code> functions compute the smallest integral value not less than <code>x</code> and return the result; the <code>floor</code> functions compute the largest integral value not greater than <code>x</code> and return the result.
Linha 150:
double floor(double x);
long double floorl(long double x); /* C99 */
 
 
===As funções <code>fabs</code>===