text cover

Data Abstraction and Problem Solving with C++

Walls and Mirrors

by Frank M. Carrano

Addison Wesley Logo

c02p119a.cpp

Go to the documentation of this file.
00001 
00015 // Exercise 13
00016 
00017 void displayOctal(int n)
00018 {
00019    if (n > 0)
00020    {  if (n/8 > 0)
00021          displayOctal(n/8);
00022       cout << n % 8;
00023    }  // end if
00024 }  // end displayOctal

Generated on Sun Aug 27 11:05:08 2006 for AWLogo by  doxygen 1.4.6