using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter02 { /// /// Example11: Follow the Bouncing Ball /// A tennis ball is dropped from shoulder height (about 1.5m) /// and bounces three times before it is caught. Sketch graphs /// of its position, velocity, and acceleration as functions /// of time, with the +y direction defined as upward. /// public class Example11 { public Example11() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }