做一道数学题,如何利用js计算圆柱体的体积,下面web建站小编给大家详细介绍一下实现代码!
计算圆柱体的体积:
function cylinderCount(height, diameter) { this.height = height; this.diameter = diameter; } cylinderCount.prototype.Volume = function () { var radius = this.diameter / 2; return this.height * Math.PI * radius * radius; }; var cyl = new cylinderCount(7, 4); console.log('圆柱体积:', cyl.Volume()); //圆柱体积: 87.96459430051421 //保留2位小数点 console.log('圆柱体积:', cyl.Volume().toFixed(2)); //圆柱体积: 87.96
上面是“数学题:利用js计算圆柱体的体积”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_3111.html
workflows工作流
- 星空星域星球comfyui工作流
- 图生图工作流:一键转换成高清动漫照片
- 一个超凡脱俗的女明星的特写镜头ComfyUI工作流
- 一个男孩在吃西瓜ComfyUI工作流
- 一个漂亮的混血女孩ComfyUI工作流
- 一座古老的石阶,旁边有一棵树
- 一个超现实和超现实的场景,在森林中心有一座蛇形的房子
- 雪地里一只可爱的小老虎
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!