1 Write the pseudocode that will accurately represent the application you are designing.
Pseudocode for application that calculates the area and perimeter of triangle:
Begin
Declare length and width as variable of type integer
Declare variable area as double
Declare variable perimeter as double
Input width and length from the keyboard
set area = width * length
set perimeter = 2 * (L + w)
Display area
Display perimeter
Stop
Comments