using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter39 { /// /// Example05: A Voyage Sirius /// An astronaut takes a trip to Sirius, which is located a /// distance of 8 lightyears from the Earth. The astronaut /// measures the time of the one-way journey to be 6 yr. If /// the spaceship moves at a constant speed of 0.8c, how can /// the 8-ly distance be reconciled with the 6-yr trip time /// measured by the astronaut? /// public class Example05 { public Example05() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }