c语言圆的周长和面积代码
时间: 2023-09-06 11:05:42 浏览: 352
C语言求圆的周长和面积
3星 · 编辑精心推荐
以下是计算圆周长和面积的C语言代码:
```c
#include <stdio.h>
#define PI 3.1415926
int main() {
float radius; // 圆的半径
float circumference; // 圆的周长
float area; // 圆的面积
// 输入圆的半径
printf("请输入圆的半径:");
scanf("%f", &radius);
// 计算圆的周长和面积
circumference = 2 * PI * radius;
area = PI * radius * radius;
// 输出结果
printf("圆的周长为:%.2f\n", circumference);
printf("圆的面积为:%.2f\n", area);
return 0;
}
```
这段代码首先定义了圆的半径、周长和面积三个变量,通过用户输入半径的值。然后,计算出圆的周长和面积分别为2 * PI * radius和PI * radius * radius。最后,将结果以两位小数的形式输出到屏幕上。
阅读全文