About 90,900,000 results
Open links in new tab
  1. Area of a triangle in language Pascal - AlgoritmosUrgentes.com

    Write a program that prompts the user to enter the tree points (x1, y1), (x2, y2), and (x3, y3) of a triangle and displays its area. The formula for computing the area of a triangle is: s = (side1 + …

  2. Program to Print Pascal's Triangle - GeeksforGeeks

    May 15, 2025 · Given an integer n, the task is to find the first n rows of Pascal's triangle. Pascal's triangle is a triangular array of binomial coefficients. Examples: Example1: The below image …

  3. Write a Pascal program to find the area of a triangle.

    Nov 23, 2023 · To find the area of a triangle using Pascal programming, we can use the formula: Area = 2 1 × base × height. Below is a simple Pascal program that prompts the user for the …

  4. Pascal Program Using Hero’s Formular To Calculate Area Of A Triangle

    Nov 10, 2016 · Just came across a program I wrote then in school to calculate area of triangle using Hero’s formula.

  5. Pascal Triangle Area Calculation - CodePal

    Calculate the area of a triangle using Pascal code. Learn how to find the area of a triangle with the given base and height.

  6. Write a pascal program that compute an area of a triangle?

    Apr 28, 2022 · {A program to compute the area of a triangle} {by Ogboin W. Meshach} Var; b,h:real; BEGIN Writeln ('Triangle'); Write ('Base: '); Readln (base); Write ('Height: '); Readln …

  7. How to calculate triangle area in Pascal - YouTube

    About Press Copyright Press Copyright

  8. Draw Pascal's triangle in PASCAL Programming like a diamond

    Mar 22, 2012 · How I can draw a Pascal's triangle in PASCAL Programming like a diamond from n number which we get that from input? Edit: This program I tried: program Pascal_triangle; …

  9. make a program in the pascal programming language using …

    Solution for make a program in the pascal programming language using functions 1. calculate the area of a triangle 2. calculate the area of the circle 3.…

    • Reviews: 1
    • Program to find area of a triangle - GeeksforGeeks

      Feb 16, 2023 · Given the coordinates of the vertices of a triangle, the task is to find the area of this triangle. Approach: If given coordinates of three corners, we can apply the Shoelace …

    Refresh