调用输入函数scanf("%lf",&x);或scanf("%f",&x);——其中%lf表示x是double型、%f表示float型。调用printf("%.5f\n",x);输出——其中.5表示小数点后保留5位小数。