using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter07 { /// /// Example08: Does the Ramp Lessen Work Required? /// A man wishes to load a refrigerator onto a truck /// using a ramp, as shown in Figure 7.15. /// He claims that less work would be required to load the /// truck if the length L of the ramp were increased. /// Is his statement valid? /// public class Example08 { public Example08() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }