Question: Write a C program that evaluates the equations provided below. The program must prompt the user for inputs to the equations and evaluate them based

Write a C program that evaluates the equations provided below. The program must prompt the user for inputs to the equations and evaluate them based on the inputs. All variables on the right hand sides of the equations must be inputted by the user. All variables, except for the plaintext character, encoded_character, variable a, shift, R1, R2, and R3 are floating-point values. The plaintext-character and encoded-character variables are characters, and the a, shift, R1, R2, and R3 variables are integers. The constant PI must be defined as a constant macro (#defined constants). Error checking is not required for your program. You do not need to check for faulty user input or dividing by zero. However, please consider inputs that could cause your program to work incorrectly 1. Newton's Second Law of Motion: force = mass* acceleration 2. Volume of a cylinder: volume_cylinder radius * height 3. Character encoding: encoded character = plaintext character- + a . shift; shift is an integer (note: what happens if plaintext character is uppercase? what happens with various shift keys?) 4. Distance between two points: distance-square root of ((XI-X2)2 + (y1-y2)2) (note: you will need to use sqrt ( ) out of math.h>) 5. Tangent: tan_theta sin (theta) cos (theta) cal nd the appropriate functions in
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
