function [ know, x ] = p08_sol ( ) %*****************************************************************************80 % %% P08_SOL returns the solution for problem 8. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 19 February 2003 % % Author: % % John Burkardt % % Parameters: % % Output, integer KNOW. % If KNOW is 0, then the solution is not known. % If KNOW is positive, then the solution is known, and is returned in X. % % Output, real X, the solution, if known. % know = 1; x = pi; return end