0633: @NeedsFurtherTesting 0634: private static double iGetDouble(String pLabel) 0635: { 0636: System.out.print("Type in your " + pLabel + " number: "); 0637: Scanner tScanner = new Scanner(System.in); 0638: return tScanner.nextDouble(); 0639: } 0640: @NeedsFurtherTesting 0641: @ToDo(programmer="Barry Cornelius", 0642: importance=ToDo.Importance.High, 0643: deadline="2004-08-31") 0644: private static double iFindSum(double pLHS, double pRHS) 0645: { 0646: return pLHS + pRHS; 0647: }