using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter39 { /// /// Example02: How Long Was Your Trip? /// Suppose you art driving car on a business trip and are /// traveling at 30 m/s. Your boss, who is waiting at your /// destination, expects the trip to take 5.0 h. When you /// arrive late, your excuse is that your car clock registered /// the passage of 5.0 h but that you were driving fast and so /// your clock ran more slowly than your boss's clock. If your /// car clock actually did indicate a 5.0 h trip, how much /// time passed on your boss's clock, which was at rest on /// the Earth? /// public class Example02 { public Example02() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }