Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
void colocarSerpienteEnMatriz() {
for (int i = 0; i < longitudSerpiente; i++) {
int x = serpiente[i].y,
y = serpiente[i].x;
prueba[x][y] = 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment