mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-22 05:21:49 +03:00
Update : adding keys
This commit is contained in:
parent
eb0f5f138b
commit
1733aa9c15
@ -186,11 +186,13 @@ void positionBoat(int mat[10][10], int boat)
|
||||
if (a >= 0 && a <= 9 && b >= 0 && b <= 9)
|
||||
{
|
||||
if (mat[a][b] != boat)
|
||||
{
|
||||
mat[a][b] = -1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (guide == 'H')
|
||||
{
|
||||
@ -207,11 +209,13 @@ void positionBoat(int mat[10][10], int boat)
|
||||
if (a >= 0 && a <= 9 && b >= 0 && b <= 9)
|
||||
{
|
||||
if (mat[a][b] != boat)
|
||||
{
|
||||
mat[a][b] = -1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
@ -686,37 +690,64 @@ void printPositioning(int Player, int boat, int nm)
|
||||
if (boat == 1)
|
||||
{
|
||||
if (nm == 1)
|
||||
{
|
||||
printMessage(msg1);
|
||||
}
|
||||
else if (nm == 2)
|
||||
{
|
||||
printMessage(msg2);
|
||||
}
|
||||
else if (nm == 3)
|
||||
{
|
||||
printMessage(msg3);
|
||||
}
|
||||
|
||||
else if (nm == 4)
|
||||
{
|
||||
printMessage(msg4);
|
||||
}
|
||||
|
||||
else if (nm == 5)
|
||||
{
|
||||
printMessage(msg5);
|
||||
}
|
||||
|
||||
else if (nm == 6)
|
||||
{
|
||||
printMessage(msg6);
|
||||
}
|
||||
}
|
||||
else if (boat == 2)
|
||||
{
|
||||
if (nm == 1)
|
||||
{
|
||||
printMessage(msg7);
|
||||
}
|
||||
else if (nm == 2)
|
||||
{
|
||||
printMessage(msg8);
|
||||
}
|
||||
else if (nm == 3)
|
||||
{
|
||||
printMessage(msg9);
|
||||
}
|
||||
else if (nm == 4)
|
||||
{
|
||||
printMessage(msg10);
|
||||
}
|
||||
}
|
||||
else if (boat == 3)
|
||||
{
|
||||
if (nm == 1)
|
||||
{
|
||||
printMessage(msg11);
|
||||
}
|
||||
if (nm == 2)
|
||||
{
|
||||
printMessage(msg12);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (Player == 2)
|
||||
{
|
||||
@ -738,38 +769,62 @@ void printPositioning(int Player, int boat, int nm)
|
||||
if (boat == 1)
|
||||
{
|
||||
if (nm == 1)
|
||||
{
|
||||
printMessage(msg1);
|
||||
}
|
||||
else if (nm == 2)
|
||||
{
|
||||
printMessage(msg2);
|
||||
}
|
||||
else if (nm == 3)
|
||||
{
|
||||
printMessage(msg3);
|
||||
}
|
||||
else if (nm == 4)
|
||||
{
|
||||
printMessage(msg4);
|
||||
}
|
||||
else if (nm == 5)
|
||||
{
|
||||
printMessage(msg5);
|
||||
}
|
||||
else if (nm == 6)
|
||||
{
|
||||
printMessage(msg6);
|
||||
}
|
||||
}
|
||||
else if (boat == 2)
|
||||
{
|
||||
if (nm == 1)
|
||||
{
|
||||
printMessage(msg7);
|
||||
}
|
||||
else if (nm == 2)
|
||||
{
|
||||
printMessage(msg8);
|
||||
}
|
||||
else if (nm == 3)
|
||||
{
|
||||
printMessage(msg9);
|
||||
}
|
||||
else if (nm == 4)
|
||||
{
|
||||
printMessage(msg10);
|
||||
}
|
||||
}
|
||||
else if (boat == 3)
|
||||
{
|
||||
if (nm == 1)
|
||||
{
|
||||
printMessage(msg11);
|
||||
}
|
||||
else if (nm == 2)
|
||||
{
|
||||
printMessage(msg12);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
/**
|
||||
* @brief Main function
|
||||
* @returns 0 on exit
|
||||
|
Loading…
Reference in New Issue
Block a user