using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter04 { /// /// Example04: A Bull's-Eye Every Time /// In a popular lecture demonstration, a projectile is /// fired at a target T in such a way that the projectile /// leaves the gun at the same time the target is dropped /// from rest, as shown in Figure 4.13. Show that if the /// gun is initially aimed at the stationary target, the /// projectile hits the target. /// public class Example04 { public Example04() { } private string result; public string Result { get{return result;} } public void Compute() { result += "Read the book."; } } }