保留四位小数,用printf输出比较好
#include<cstdio> int main() { double pi=3.14159,r; scanf("%lf",&r); printf("A=%.4lf",pi*r*r); return 0; }