import java.util.Scanner;
/*************************************************************

NOTE: you will need to "flesh out" this class.  The method headers
are provided for you, but you must fill in all of the implementation
code and the documentation.  YOU MUST NOT CHANGE THE HEADERS.

You should write "stubs" for each of the methods, test it against
the tester programs, then fill in the methods themselves testing each
one independently.

**************************************************************/
public class Physics
{
	public static double getFallDistance(int time)
	public static double getDistance(double velocity, double time)
	public static double getKinEnergy(double mass, double velocity)
	public static double getMomentum(double mass, double velocity)
	public static double getFinalVelocity(double initialV, double acceleration,
	 double time)
	public static String getFormattedValue(double value, int precision)
	
}
