1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
char Gird[5][5] =
{
{ -1, -1, -1, -1, 'G'},
{ -1, -1, -1, 'P', -1},
{ -1, 'W', -1, -1, -1},
{ -1, -1, 'P', -1, -1},
{ -1, -1, -1, -1, -1}
};
//This is so wrong.
int Random () {
srand(time(NULL));
WumpusWorld[5][5] = rand() % WumpusWorld[5][5];
return WumpusWorld[5][5];
}
|