📄 program2_10.c
字号:
/* Program 2.10 Round tables again but shorter */
#include <stdio.h>
int main(void)
{
float diameter = 0.0f; /* The diameter of a table */
float radius = 0.0f; /* The radius of a table */
const float Pi = 3.14159f; /* Defines the value of Pi as fixed */
printf("Input the diameter of the table:");
scanf("%f", &diameter);
radius = diameter/2.0f;
printf("\nThe circumference is %.2f", 2.0f*Pi*radius);
printf("\nThe area is %.2f", Pi*radius*radius);
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -