Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C programming with selection by calculation. DO NOT use any logical operators, relational operators, bool variables and selection constructs including ternary operators, switch cases and
C programming with selection by calculation. DO NOT use any logical operators, relational operators, bool variables and selection constructs including ternary operators, switch cases and if/else statements.
. . Problem: The user will provide a positive integer value as the first input representing the options described below. 1 - A circle with an equilateral [T]riangle inscribed. 2 - A circle with a [S]quare inscribed. 3 or larger A regular polygon with a [C]ircle inscribed. The number of sides of the polygon is equal to the integer input. The second input is the area of the figure (circle for options 1 and 2, polygon for 3 or larger). Your program will calculate the radius or apothem and area of the inscribed figure. Example Execution #1 (circle with [T]riangle inscribed): Enter desired option -> 1 Enter area of figure -> 150 6.9 Radius/Apothem of figure with area given: Area of inscribed figure [T]: 62.0 Example Execution #2 (circle with [S]quare inscribed): Enter desired option -> 2 Enter area of figure -> 255.45 9.0 Radius/Apothem of figure with area given: Area of inscribed figure [S]: 162.6Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started