TypeScript 计算斜边

TypeScript 计算斜边

直角三角形的最长边和远离直角的边被称为斜边。毕达哥拉斯定理解释说,斜边的平方等于其他两边的平方之和。我们可以用这个定理来确定它。这个定理的公式表示是c2=a2+b2,其中c表示Hypotenuse,a和b是三角形的两条边。当三角形其他两边的长度已知时,毕达哥拉斯定理很快就能确定斜边的值。首先,我们必须取其他两边的平方之和的平方根,以获得斜边。

勾股定理可用于在TypeScript中计算Hypotenuse,方法是编写一个函数,接受两条短边的长度作为参数。结果是,该函数返回Hypotenuse。有一个条件可以应用这个定理并找到Hypotenuse。三角形必须是一个直角三角形,这个函数才会起作用,这就要求其中一个角必须是直角(90度)。如果三角形不是直角三角形,就不能应用勾股定理来确定斜边。我们将用两个例子来描述typescript的功能。

语法

该函数可定义如下

function hypotenuse(a: number, b: number): number {
   return Math.sqrt(a * a + b * b);
}

这个函数需要两个参数,a和b,代表三角形的两条短边的长度。然后,它通过将a和b的平方相加计算斜边的平方,最后返回该和的平方根。

值得注意的是,该函数假定该三角形是一个直角三角形,即其中一个角是直角(90度)。如果三角形不是直角三角形,就不能用毕达哥拉斯定理来求斜边。

例子

在这个例子中,我们将在TypeScript中找到一个数字的斜边。需要执行以下步骤,并在下面给出了解释。

步骤

  • 我们首先定义一个名为hypotenuse的函数,它需要两个参数a和b,分别代表三角形的两条短边的长度。这个函数使用毕达哥拉斯定理来计算斜边的平方,将a和b的平方相加,然后使用TypeScript中的Math.sqrt()方法返回该和的平方根。

  • 然后我们定义两个变量,side1和side2,它们是三角形的两条短边。这些值分别被指定为3和4。

  • 然后,我们通过传递side1和side2作为参数来调用斜边函数,结果存储在一个变量hypotenuseValue中。

  • 最后,我们使用console.log()方法在控制台中打印结果。

function hypotenuse(a: number, b: number): number {
  return Math.sqrt(a * a + b * b)
}

let side1: number = 3
let side2: number = 4

let hypotenuseValue: number = hypotenuse(side1, side2)
console.log(
  `The hypotenuse of the triangle with sides {side1} and{side2} is ${hypotenuseValue}.`
)

On compiling, it will generate the following JavaScript code −

function hypotenuse(a, b) {
   return Math.sqrt(a * a + b * b);
}
var side1 = 3;
var side2 = 4;
var hypotenuseValue = hypotenuse(side1, side2);
console.log("The hypotenuse of the triangle with sides " + side1 + " and " + side2 + " is " + hypotenuseValue + ".");

输出

上述代码将产生以下输出 –

The hypotenuse of the triangle with sides 3 and 4 is 5.

例子

在这个例子中,我们将使用TypeScript中的Math.pow和Math.sqrt方法找到一个数字的斜边。需要执行以下步骤,下面也给出了解释。

步骤

  • 我们创建了一个名为findHypotenuse的函数,它需要两个参数a和b,分别代表三角形两条短边的长度。

  • 在这个函数中,我们使用Math.pow(base, exponent)方法对a和b的值进行平方,然后使用Math.sqrt()方法找出a和b的平方根之和。

  • 然后我们定义两个变量,边A和边B,它们是三角形的两条短边。这些值分别被指定为5和12。

  • 然后,我们通过传递边A和边B作为参数来调用findHypotenuse函数,结果被存储在一个变量hypotenuse中。

function findHypotenuse(a: number, b: number): number {
   return Math.sqrt(Math.pow(a, 2) + Math.pow(b, 2))
}

let sideA: number = 5
let sideB: number = 12

let hypotenuse: number = findHypotenuse(sideA, sideB)
console.log(
   `The hypotenuse of the triangle with sides {sideA} and{sideB} is ${hypotenuse}.`
)

On compiling, it will generate the following JavaScript code −

function findHypotenuse(a, b) {
   return Math.sqrt(Math.pow(a, 2) + Math.pow(b, 2));
}
var sideA = 5;
var sideB = 12;

var hypotenuse = findHypotenuse(sideA, sideB);
console.log("The hypotenuse of the triangle with sides " + sideA + " and " + sideB + " is " + hypotenuse + ".");

输出

上述代码将产生以下输出 –

The hypotenuse of the triangle with sides 5 and 12 is 13.

使用TypeScript,我们甚至可以有效地执行更多的数学计算。寻找斜边就是其中的一个例子。而且,其结果也是快速而准确的。

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

TypeScript 教程