这里我们将看到如何编写一行 C 函数,该函数可以对浮点数进行舍入。为了解决这个问题,我们必须按照以下步骤进行。
#include <stdio.h> int my_round(float number) { return (int) (number < 0 ? number - 0.5 : number + 0.5); } int main () { printf("Rounding of (2.48): %d</p><p>", my_round(2.48)); printf("Rounding of (-5.79): %d</p><p>",my_round(-5.79)); }
Rounding of (2.48): 2 Rounding of (-5.79): -6
위 내용은 부동 소수점 수를 반올림하는 한 줄 C 함수 작성의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!