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: o This function will calculate the perimeter of a triangle o Accepts the sides of triangle as parameter o Formula: perimeter = a+ b+ c Return the result back to the caller. Function 3: o This function will calculate the area of a triangle o Accepts the sides of triangle as parameter o Formula: area = /s (s – a)(s – b)(s – c), where s = (a + b+ c)/2 Return the result back to the caller. Function 4: o This function will get the sides of triangle from user. o 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 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. o Ask if user wish to calculate again. Repeat as long as user wishes to. If user wish to stop calculate, display "Thank you!" and terminate the program. [Note: Apply math.h and string.h]

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter6: User-defined Functions
Section: Chapter Questions
Problem 8PE
icon
Related questions
Question

Please help?

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:
o This function will calculate the perimeter of a triangle
o Accepts the sides of triangle as parameter
Formula: perimeter = a + b+c
o Return the result back to the caller.
Function 3:
o This function will calculate the area of a triangle
o Accepts the sides of triangle as parameter
o Formula: area = s (s- a)(s – b)(s - c), where s (a+b+ c)/2
Return the result back to the caller.
Function 4:
o This function will get the sides of triangle from user.
o 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
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.
o 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.h]
Transcribed Image Text: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: o This function will calculate the perimeter of a triangle o Accepts the sides of triangle as parameter Formula: perimeter = a + b+c o Return the result back to the caller. Function 3: o This function will calculate the area of a triangle o Accepts the sides of triangle as parameter o Formula: area = s (s- a)(s – b)(s - c), where s (a+b+ c)/2 Return the result back to the caller. Function 4: o This function will get the sides of triangle from user. o 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 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. o 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.h]
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Threats
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning