用Golang程序来计算长方体的体积、对角线和面积
在本教程中,我们将讨论利用长方体的长、宽、高计算其体积、对角线和面积的方法。
但在写它的Golang代码之前,让我们简单地讨论一下长方体及其体积、对角线和面积。
长方体是一个有六个面和十二条边的三维图形。长方体的长、宽、高是不同的,不像立方体的所有边都是相等的。一个长方体就是一个很好的例子。
一个长方体所占据的空间量被称为其体积。在我们想知道一个房间可以积聚多少空气的情况下,计算一个长方体的体积是有好处的。
Volume = l * b * h
长方体的对角线可以被定义为连接长方体两个相对顶点的线段。
长方体所占的总面积被称为长方体的面积。
Area = 2 * (l * h + l * b + h * b)
长方体的体积=150
长方体的对角线=11.575836902790225
长方体的面积=190
package main
import (
"fmt"
"math"
)
func calculateVolumeOfCuboid(l, b, h float64) float64 {
var volume float64 = 0
volume = l * b * h
return volume
}
func calculateDiagonalOfCuboid(l, b, h float64) float64 {
var diag float64 = 0
diag = math.Sqrt((l * l) + (b * b) + (h * h))
return diag
}
func calculateAreaOfCuboid(l, b, h float64) float64 {
var area float64 = 0
area = 2 * ((l * h) + (l * b) + (h * b))
return area
}
func main() {
var l, b, h float64 = 10, 3, 5
var volume, diag, area float64
fmt.Println("Program to calculate the volume, diagonal and area of the Cuboid \n")
volume = calculateVolumeOfCuboid(l, b, h)
diag = calculateDiagonalOfCuboid(l, b, h)
area = calculateAreaOfCuboid(l, b, h)
fmt.Println("Length of the cuboid: ", l)
fmt.Println("Breadth of the cuboid: ", b)
fmt.Println("Height of the cuboid: ", h)
fmt.Println("Therefore, Volume of cuboid: ", volume)
fmt.Println("Diagonal of cuboid: ", diag)
fmt.Println("Area of cuboid: ", area)
}
Program to calculate the volume, diagonal and area of the Cuboid
Length of the cuboid: 10
Breadth of the cuboid: 3
Height of the cuboid: 5
Therefore, Volume of cuboid: 150
Diagonal of cuboid: 11.575836902790225
Area of cuboid: 190
h)) – 使用这个公式,我们正在计算对角线。我们正在使用数学包中的Sqrt函数来做平方根。
这是关于使用Go编程计算长方体的体积、对角线和面积的全部内容。我们还通过使用单独的函数来计算面积、对角线和体积来保持代码的模块化,这也增加了代码的可重复使用性。你可以通过这些教程探索更多关于Golang编程的知识