User avatar

Lauren Craves

Administrator

Administrator
Topic with some codes
There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form.

Code: Select all

// JavaScript program to find the area of a triangle

const side1 = parseInt(prompt('Enter side1: '));
const side2 = parseInt(prompt('Enter side2: '));
const side3 = parseInt(prompt('Enter side3: '));

// calculate the semi-perimeter
const s = (side1 + side2 + side3) / 2;

//calculate the area
const areaValue = Math.sqrt(
  s * (s - side1) * (s - side2) * (s - side3)
);

console.log(
  `The area of the triangle is ${areaValue}`
);

Information

Users browsing this forum: No registered users and 0 guests