View Single Post
Old Mar 2nd, 2005, 4:46 PM   #3
Ooble
I eat cake for breakfast.
 
Ooble's Avatar
 
Join Date: Jul 2004
Location: In my box.
Posts: 4,434
Rep Power: 9 Ooble is on a distinguished road
OK... first off, why do you use two different sets of constants for the maximum number of rows and columns?

Anyway, to fix the errors:

  1. You need using namespace std; after the #includes (2).
  2. private is lowercase (16).
  3. I believe you want a capital B (22).
  4. Your do-while loops should be structured like this:
    do {
      
    ...
      
    ...
      
     } while (blah);
    You haven't closed the brackets after while or used braces.
Enjoy.
__________________
Me :: You :: Them
Ooble is offline   Reply With Quote