function exact = p01_exact ( ) %*****************************************************************************80 % %% P01_EXACT returns the exact integral for problem 1. % % Licensing: % % This code is distributed under the GNU LGPL license. % % Modified: % % 17 January 2009 % % Author: % % John Burkardt % % Parameters: % % Output, real EXACT, the value of the integral. % exact = pi * pi / 6.0; return end