using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter09 { /// /// Example20: Fighting a Fire /// Two fire fighters must apply a total force of 600 N to /// steady a hose that is discharging water at the rate /// of 3600 L/min. Estimate the speed of the water as it exits /// the nozzle. /// v_e = 10 m/s /// public class Example20 { public Example20() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }