用c++写一个圆锥并输出
时间: 2023-02-20 13:27:57 浏览: 76
OpenGL.rar_OpenGL 圆柱_openg 圆柱_opengl 圆锥_opengl绘制圆锥_圆柱 obj c++
5星 · 资源好评率100%
#include <stdio.h>
int main()
{
int r, h;
float v;
printf("请输入圆锥的半径和高:");
scanf("%d %d", &r, &h);
v = 3.14 * r * r * h / 3;
printf("圆锥的体积为:%.2f\n", v);
return 0;
}
阅读全文