Question: Need help creating a battleship program. Here are the specifications: class battleship { public : battleship ( ifstream &); char fire (char , int );

Need help creating a battleship program. Here are the specifications:

class battleship

{

public :

battleship ( ifstream &);

char fire (char , int );

char isOver () const ;

string getGrid () const ;

int remaining () const ;

private :

static const int ROWS = 10;

static const int COLUMNS = 10;

char playerGrid [ ROWS ][ COLUMNS ];

bool solutionGrid [ ROWS ][ COLUMNS ];

int maxMoves ;

int movesMade ;

};

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!