write a program that does the following


Write a program that does the following: Calculates the Velocity and Momentum of an object. The formula for the velocity is V=d/t and the formula Momentum is m=mass*velocity. Your program should consist of four functions: Passing By Values (one), two Passing By References (functions), and Passing By Pointers (one). It should also have a for loop and necessary print statements to print the result.
· The Passing By Values function is to calculate the velocity of the object, where you pass two parameters to this function a constant distance, but the time is the value of the for loop: I=1.
· The Pass By Pointers function calculates the momentum of the object, where you pass two parameters to this function: The Velocity and a constant mass of an object: mass=205.
· The first Pass By References function. This function “Pass by references” calculates the total of Velocity. For example, it keeps tract of cumulative velocity. In this case the function receives two parameters velocity and initialVelocityTotal=0 and the function keeps tract of the total velocity.
· The second Pass By Reference function uses the same method as the other Pass by Reference function, but you replace the Velocity parameters with Momentum: initialMomentumTotal=0.

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: write a program that does the following
Reference No:- TGS0176600

Expected delivery within 24 Hours