using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter06 { /// /// Example13: Resistive Force Exerted on a Baseball /// A pitcher hurls a 0.145 kg baseball past a better /// at 40.2 m/s (=90 mi/h). Find the resistive force acting /// on the ball at this speed. /// public class Example13 { public Example13() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }