using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter09 { /// /// Example17: Exploding Projectile /// A projectile fired into the air suddenly explodes into /// several fragments (Fig.9.26). What can be said about the /// motion of the center of mass of the system made up of all /// the fragments after the explosion? /// public class Example17 { public Example17() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }