text cover

Data Abstraction and Problem Solving with C++

Walls and Mirrors

by Frank M. Carrano

Addison Wesley Logo

Exercise15.cpp

Go to the documentation of this file.
00001 
00015 // Exercise 15
00016 
00017 int p(int x)
00018 {  if (x <= 3)
00019       return x;
00020    else
00021       return p(x - 1) * p(x - 3);
00022 }  // end p

Generated on Sun Aug 27 13:27:58 2006 for AWLogo by  doxygen 1.4.6