using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter44 { /// /// Example04: How Many Nuclei Are Left? /// The isotope carbon-14, 14C, is radioactive and has a /// half-life of 5730 years. If you start with a sample of /// 1000 carbon-14 nuclei, how many will still be undecayed /// in 22920 years? /// public class Example04 { public Example04() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }