using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter05 { /// /// Example08: Weighing a Fish in an Elevator /// A person weighs a fish of mass m on a spring scale /// attached to the ceiling of an elevator. Show that if /// the elevator accelerates either upward or downward, /// the scale gives a reading that is different from /// the weight of the fish. /// public class Example08 { public Example08() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }