大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺
#include <iostream>
#include <cmath>
using namespace std;
void volume_square();//立方体体积函数声明
void volume_cylinder();//圆柱体积函数声明
void volume_cone();//圆锥体积函数声明
int main()
{
int choice=-1;
cout<<"请您选择需要计算体积的空间类型:"<<endl;
/*进行程序的循环*/
while(choice)
{
/*输出选项*/
cout<<"1:长方体"<<endl;
cout<<"2:圆柱体"<<endl;
cout<<"3:圆锥体"<<endl;
cout<<"0:结束程序"<<endl;
/*输入选项*/
cin>>choice;
/*选择要使用的功能*/
switch(choice)
{
case 1:volume_square();break;
case 2:volume_cylinder();break;
case 3:volume_cone();break;
case 0: cout<<"感谢使用!"<<endl;break;
}
}
return 0;
}
/*立方体体积函数*/
void volume_square()
{
double len,width,height;
cout<<"请输入长方体的长宽高:";
cin>>len>>width>>height;
double v=len*width*height;
cout<<"长方体的体积为:"<<v<<endl;
}
/*圆柱体体积函数*/
void volume_cylinder()
{
double radius,height;
cout<<"请输入圆柱体的底半径和高:";
cin>>radius>>height;
double v=3.14*pow(radius,2)*height;
cout<<"圆柱体的体积为:"<<v<<endl;
}
/*圆锥体体积函数*/
void volume_cone()
{
double radius,height;
cout<<"请输入圆锥体的底半径和高:";
cin>>radius>>height;
double v=(1.0/3.0)*3.14*pow(radius,2)*height;
cout<<"圆锥体的体积为:"<<v<<endl;
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/193767.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...