PTA ----- 圆形体体积计算器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PTA ----- 圆形体体积计算器相关的知识,希望对你有一定的参考价值。
#include <stdio.h>
#include <math.h>
#define PI 3.14159265358979
void main()
{
double x = 4.0, y = 3.0, e = 1.0, r, h;
int n, i = 0;
while (1)
{
printf("1-Ball
");
printf("2-Cylinder
");
printf("3-Cone
");
printf("other-Exit
");
printf("Please enter your command:
");
scanf("%d", &n);
if (n == 1)
{
printf("Please enter the radius:
");
scanf("%lf", &r);
printf("%.2lf
", (x / y * 1.0) * PI * pow(r, 3) * 1.0);
}
else if (n == 2)
{
printf("Please enter the radius and the height:
");
scanf("%lf %lf", &r, &h);
printf("%.2lf
", h * PI * pow(r, 2) * 1.0);
}
else if (n == 3)
{
printf("Please enter the radius and the height:
");
scanf("%lf %lf", &r, &h);
printf("%.2lf
", 1 / y * PI * r * r * h * 1.0);
}
else break;
}
}
以上是关于PTA ----- 圆形体体积计算器的主要内容,如果未能解决你的问题,请参考以下文章