using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter27 { /// /// Example06: A Platinum Resistance Thermometer /// A resistance thermometer, which measures temperature by /// measuring the change in resistance of a conductor, is made /// from platinum and has a resistance of 50.0 \Omega at 20.0^{\circle} C. /// When immersed in a vessel containing melting indium, its /// resistance increases to 76.8 \Omega. /// Calculate the melting point of the indium. /// public class Example06 { public Example06() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }