¿Esta es tu empresa?
Round a floating point number to the nearest integer. Do not use any helper functions.
Anónimo
int round(float input) { int x = ( input > 0 ) ? (input + 0.5):(input - 0.5) ; return x ; }
Sigue a tus empresas favoritas para estar al tanto de las últimas oportunidades y disponer de información desde adentro.
Recibe recomendaciones y actualizaciones personalizadas al iniciar tu búsqueda.