using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter14 { /// /// Example04: The Force on a Dam /// Water is filled to a height H behind a dam of /// width w (Fig.14.5). Determine the resultant force /// exerted by the water on the dam. /// F = 1/2 \rho g w H^2 /// public class Example04 { public Example04() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }