/*教材2_1 求圆的面积*/、 #include<stdio.h> #define PI 3.1415926 int main() { float s,r; scanf("%f",&r); s = PI *r*r; printf("s=%f",s); return 0; }