#include #define PAI 3.14int main(){ float r=30,c,s; c=2*PAI*r; s=PAI*r*r; printf("%f\t%f\n",c,s); return 0;}