Question: Write a complete C program to calculate the perimeter and area of a triangle with 3 sides namely a, b, and c. The sides will

 Write a complete C program to calculate the perimeter and area

Write a complete C program to calculate the perimeter and area of a triangle with 3 sides namely a, b, and c. The sides will be given as inputs by the user. The program will be executed at least once, and repeat as long as user wish to calculate again. There are a total of 5 functions: Function 1: o This function will display the menu options that the user can choose (to calculate perimeter or area of a triangle). Function 2: This function will calculate the perimeter of a triangle Accepts the sides of triangle as parameter o Formula: perimeter = a +b+c o Return the result back to the caller. Function 3: This function will calculate the area of a triangle Accepts the sides of triangle as parameter Formula: area = /s(s - a)(s - b)(s - c), where s = (a + b + c)/2 o Return the result back to the caller. Function 4: This function will get the sides of triangle from user. Ask user for option on what s/he would like to calculate. Based on the option (Use switch case statement) . call the necessary function identify the type of calculation ("Perimeter or Area) identify the calculation unit (cm" or "cm2") o Then, print out the result. Function 5: o This is the main function o Call the function that is used to display the menu. o Call the function that is used to ask for inputs, calculate and display result. Ask if user wish to calculate again. Repeat as long as user wishes to. o If user wish to stop calculate, display "Thank you!" and terminate the program [Note: Apply math.h and string.nl

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!