using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter41 { /// /// Example03: Energy Quantization for a Macroscopic Object /// A 0.500-kg baseball is confined between two rigid walls /// of a stadium that can be modeled as a box length 100 m. /// calculate the minimum speed of the baseball. /// public class Example03 { public Example03() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }