保留四位小数部分不熟练
#include<stdio.h> int main() { double R,X; double PI=3.14159; scanf("%lf",&R); X=PI*R*R; printf("A=%6.4lf\n",X); return 0; }