请编写程序求圆形的面积并把3.1415926的值定义为符号常量pi

发布网友 发布时间:2024-10-24 09:55

我来回答

1个回答

热心网友 时间:2024-11-05 02:03

也没说用啥语言,用C语言写了

#include <stdio.h>

#define PI 3.1415926

int main(void)
{
float r = 0.0;
float s = 0.0;
printf("Please input the radius of circle: \n");
scanf("%f", &r);
s = PI * r * r;
printf("The area of the circle is %f\n", s);
return 0;
}

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com