
10-31-2002, 06:51 PM
here ya go ... this code will first set game_dice1 to set_dice1 then print game_dice1 .... this might help you out some...
[code:36537]
#include <iostream.h>
int main()
{
int i;
int j;
char game_dice1[5][7] = {"", "", "", "", ""};
char set_dice1[5][7] = {"///////",
"/ /",
"/ * /",
"/ /",
"///////"};
// loop through the rows
for (j = 0; j < 5; j++)
{
// loop through the cols
for (i = 0; i < 7; i++)
{
// set row and col of game_dice to set_dice
game_dice1[j][i] = set_dice1[j][i];
}
}
for (j = 0; j < 5; j++)
{
for (i = 0; i < 7; i++)
{
cout << game_dice1[j][i];
}
cout << endl;
}
return 0;
}
[/code:36537]
|