using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter01 { /// /// Example05: Breaths in a lifetime /// Estimate the number of breaths taken during /// an average life span. /// public class Example05 { public Example05() { } private string result; public string Result { get{return result;} } public void Compute() { double numberOfBreaths = 70.0*365.0*24.0*60.0*10.0; result = numberOfBreaths.ToString(); } } } // 367920000