using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter02 { /// /// Example09: The Daring Sky Divers /// A sky diver jumps out of a hovering helicopter. /// A few seconds later, another sky diver jumps out, /// and they both fall along the same vertical line. /// Ignore air resistance, so that both sky divers fall /// with the same acceleration. Does the difference in /// their speeds stay the same throughout the fall? /// Does the vertical distance between them stay the same /// throughout the fall? /// public class Example09 { public Example09() { } private string result; public string Result { get{return result;} } public void Compute() { result += " Read the book!"; } } }