程序功能:在main函数中,输入圆的半径,调用girth函数,输出圆的周长。
#include <stdio.h>
void girth(float r, float *x)
{ 【 】 }
void main()
{ float r, g;
scanf("%f", &r);
girth(r, 【 】);
printf("s=%f\n", g);
} /*y=r*r*3.14;
第一个空填 *x=2*3.14*r;
第二个空填 &g
完整的C语言程序如下
#include <stdio.h>