Viernes 8 de Noviembre de 2024, 22:57
SoloCodigo
Bienvenido(a),
Visitante
. Por favor,
ingresa
o
regístrate
.
¿Perdiste tu
email de activación?
Inicio
Foros
Chat
Ayuda
Buscar
Ingresar
Registrarse
SoloCodigo
»
Foros
»
Programación General
»
Delphi
»
Codigo Fuente Del Sodoku
« anterior
próximo »
Imprimir
Páginas: [
1
]
Autor
Tema: Codigo Fuente Del Sodoku (Leído 1484 veces)
kllejero911
Nuevo Miembro
Mensajes: 1
Codigo Fuente Del Sodoku
«
en:
Viernes 2 de Junio de 2006, 14:57 »
0
Alguien me puede ayudar con el codigo fuente del sodoku en delphi porfavor ??
Tweet
Enko
Miembro de PLATA
Mensajes: 1562
Nacionalidad:
Re: Codigo Fuente Del Sodoku
«
Respuesta #1 en:
Viernes 2 de Junio de 2006, 23:40 »
0
En este foro no se hacen tareas.
Si tienes problemas al escribir tu código, no dudes en preguntar lo que te haga falta.
zeraf_
Nuevo Miembro
Mensajes: 11
Re: Codigo Fuente Del Sodoku
«
Respuesta #2 en:
Martes 6 de Junio de 2006, 05:30 »
0
Código: Text
void ubicar(int i, int j, matriz mat)
{
int x;
if (i < 9) {
if (j < 9) {
if(mat[i][j] == -1) {
for(x = 1; x <= 9; x++) {
if(NOenfila(x, i, mat) && NOencolumna(x, j, mat) && NOenmatriz(x, i, j, mat)) {
mat[i][j] = x;
ubicar(i, j+1, mat);
mat[i][j] = -1;
}
}
}
else
ubicar(i, j+1, mat);
}
else
ubicar(i+1, 0, mat);
}
else
mostrar(mat);
}
Es tarea pasarlo a Delphi, y terminarlo
.
Yashira.org
Imprimir
Páginas: [
1
]
« anterior
próximo »
SoloCodigo
»
Foros
»
Programación General
»
Delphi
»
Codigo Fuente Del Sodoku