Juego Loteria En C
“PROYECTO FINAL”
“LOTERIA”
GRUPO: INTERSEMESTRAL
RODRIGUEZ CRUZ RICARDO
VELAZQUEZ VELAZQUEZ OSCAR
FECHA DE ENTREGA: 23-06-2011
CODIGO IMPRESO:
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
struct tarjeta
{
int no_tarjeta; int no_obtenidos; int numeros[3][3]; char jugador[100];
};
struct tarjeta tarjeta[2];
int random(int n, int m);
void asignarTarjetas();
int tirarBaraja();
void jugarLoteriaMexicana();
/* Función principal. Comienzo de ejecución. */ int main()
{
char resp; int opcion = 0;
do { printf("\n\n\t== LOTERIA MEXICANA ==\n\n"); printf("\t1.JUGAR\n"); printf("\t2.SALIR\n"); …ver más…
de tarjeta: %d",tarjeta[i].no_tarjeta); printf("\n\t|"); }
printf("\n\t|");
for(j = 0; j < 3; j++) { for(k = 0; k < 3; k++) { tarjeta[i].numeros[j][k] = -1; } }
for(j = 0; j < 3; j++) { for(k = 0; k < 3; k++) { /* Usamos la función para obtener números */ aleatorio = random(1,30);
for(l = 0; l < 3; ++l) { for(m = 0; m < 3; ++m) { if(tarjeta[i].numeros[j][k] == aleatorio) { aleatorio = random(1,30); m = -1; } else if(tarjeta[i].numeros[j][k] == -1) { tarjeta[i].numeros[j][k] = aleatorio; break; } }