El 21 O Blackjack

admin
El 21 O Blackjack 4,6/5 5530 votes

gORY

Mensajes : 43
Fecha de inscripción : 10/07/2010
Edad : 30
  • Mensaje n°1

El 21 O Blackjack Vegas World

No direct-relation sequel to original Black Jack. Black Jack attempts to find out the conspiracy, of why he was involved in the bombfield accident that kille. Blackjack is also featured in various television shows. Here are a few shows inspired by the game. Gambit was a game show with Wink Martindale where couples answer questions to collect cards that could add up to 21. Catch 21 is a GSN game show with Alfonso Ribeiro from The Fresh Prince of Bel-Air. On this show, three players answer questions to.

El 21 O Blackjack Poker

Poker

[CODIGO] Juego de cartas ' las 21' o 'BlackJack'

El 21 o blackjack poker
Código:

#include<stdio.h>
#include<stdlib.h>
#include<time.h>
/*EL JUEGO DE LAS 21*/
main(){
int fin,pinta,num,suma,pc_num,pc;
srand(time(NULL));
printf('EL JUEGO DE LAS 21,LA SUMA DE LAS CARTAS DEBE SER 21,n');
printf('SI SU SUMA ES MAS ALTA QUE LA DE LA COMPUTADORA, ENTONCES UD GANA EL JUEGO,n');
printf('SI SU SUMA EXCEDE LOS 21, PIERDE DE INMEDIATO EL JUEGO.nn');
fin = 0;
suma = 0;
while(fin!=2){
num = (rand()%10)+1;
printf('%d ',num);
pinta = (rand()%4)+1;
if (pinta1){
printf('de Oronn');
}
if(pinta2){
printf('de Bastonn');
}
if(pinta3){
printf('de Copann');
}
if(pinta4){
printf('de Espadann');
}
suma = suma + num;
printf('LA SUMA ES DE: %dnn',suma);
printf('DESEA PEDIR OTRA CARTA? nSI>>MARQUE 1nNO>>MARQUE 2nn');
scanf('%d',&fin);
if (suma>21){
printf('HA PERDIDO EL JUEGO!nLA SUMA EXCEDE LOS 21nn');
fin = 2;
}
}
pc = (rand()%7)+1;
pc_num = pc + 16;
//COMPROBAR QUE EL JUGARDOR1 TENGA MENOS DE 21
if(pc_num>21){
printf('PUNTAJE JUGADOR: %dnPUNTAJE PC: %dn',suma,pc_num);
printf('HA GANADO EL JUEGO!nn');
}
else if(suma<=21){
if(suma>pc_num){
printf('PUNTAJE JUGADOR: %dnPUNTAJE PC: %dn',suma,pc_num);
printf('HA GANADO EL JUEGO!nn');
}
if(sumapc_num){
printf('PUNTAJE JUGADOR: %dnPUNTAJE PC: %dn',suma,pc_num);
printf('JUEGO EMPATADO!!nn');
}
if(suma<pc_num){
printf('PUNTAJE JUGADOR: %dnPUNTAJE PC: %dn',suma,pc_num);
printf('HA PERDIDO EL JUEGO!nn');
}
}
printf('Copyright by gORYn');
system('pause');
}

TIPICO JUEGO DE CARTAS QUE SE HACE UNA NOCHE DE ABURRIMIENTO XD.