using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter05 { /// /// Example02: How Much Do You Weigh in an Elevator? /// You have most had the experience of standing in an /// elevator that accelerates upward as it moves toward a /// higher floor. In this case, you feel heavier. /// In fact, if you are standing on a bathroom scale at /// the time, the scale measures a force having a magnitude /// that is greater than your weight. Thus, you have tactile /// and measured evidence that leads you to believe you are /// heavier in this situation. Are you heavier? /// public class Example02 { public Example02() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }