using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter09 { /// /// Example16: The Sliding Bear /// Suppose you tranquilize a polar bear on a smooth glacier /// as part of a research effort. How might you estimate /// the bear's mass using a measuring taoe, a rope, /// and knowledge of your own mass? /// public class Example16 { public Example16() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }