using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter05 { /// /// Example03: You push me and I will push you /// A large man and a small boy stand facing each other /// on frictionless ice. They put their hands together and /// push against each other so that they move apart. /// (A) Who moves away with the higher speed? /// (B) Who moves farther while their hands are in contact? /// public class Example03 { public Example03() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }