1. 程式人生 > 其它 >浮點型保留小數位數

浮點型保留小數位數

#include <stdio.h>
int main()
{
	double a;
	scanf("%lf", &a);
	printf("%.3lf", a);
	return 0;
}

在這裡插入圖片描述
自動四捨五入