using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter06 { /// /// Example11: The Sky Surfer /// Consider a sky surfer (fig. 6.17) who jumps from a plane /// with her feet attached firmly to her surfboard, does some /// tricks, and then opens her parachute. Describe the forces /// acting on her during these maneuvers. /// public class Example11 { public Example11() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }