编程远的半径r,计算并输出圆的周长与面积

问题描述:

编程远的半径r,计算并输出圆的周长与面积

用C语言写一段:#include“stdio.h”
#define PI 3.1416
void main(){
int r;
float c,s;
scanf("%d",&r);
c=PI*2*r;
s=PI*r*r;
printf("%f,%f",c,s);
}