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