📜  四舍五入的十进制数 - C 编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:35.809000             🧑  作者: Mango

代码示例1
#include 
#include 
 int main()
{
       float i=5.4, j=5.6;
       printf("round of  %f is  %f\n", i, round(i));
       printf("round of  %f is  %f\n", j, round(j));
       return 0;
}