94.4k views
5 votes
Pascal program to find area of a triangle

1 Answer

7 votes

Below is a Pascal program that calculates the area of a triangle using the formula of Area =1/2 x base x height.

program TriangleAreaCalculator;

var

base, height, area: real;

begin

// Input

writeln('Enter the base of the triangle: ');

readln(base);

writeln('Enter the height of the triangle: ');

readln(height);

// Calculate area

area := 0.5 * base * height;

// Output

writeln('The area of the triangle is: ', area);

// Wait for user input before closing the program

writeln('Press Enter to exit.');

readln;

end.

What is the pascal program?

The Pascal program is said to be one that computes the area of a triangle based on user-inputted values for the base and height. It make use of the formula:


\( \text{Area} = (1)/(2) * \text{base} * \text{height} \).

Therefore, The program prompts the user for input, performs the calculation, and then displays the result. It ensures a clean exit by waiting for user confirmation. The above script is designed to run on a Pascal compiler.

See full text below

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

User Shady
by
8.2k points