using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter07 { /// /// Example10: Useful Physics for Safer Driving /// A car traveling at an initial speed v slides a /// distance d to a halt after its brakes lock. Assuming /// that the car's initial speed is instead 2v at the moment /// the brakes lock, estimate the distance it slides. /// public class Example10 { public Example10() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }