using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter02 { /// /// Example06: Entering the Traffic Flow /// (A) Estimate your average acceleration as you drive up /// the entrance ramp to an interstate highway. /// (B) How far did you go during the first half of the time /// interval during which you accelerated? /// public class Example06 { public Example06() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book"; } } }