Este simples Programa faz sorteio de cartas de um baralho,
copie cole e compile:
#include <stdio.h>
#include <conio2.h>
#include <time.h>
int a, b, c, i, j;
char carta [13] [7] = {{"2"}, {"3"}, {"4"}, {"5"}, {"6"}, {"7"}, {"8"}, {"9"}, {"10"}, {"A"}, {"Valete"}, {"Dama"}, {"Rei"}};
char nipes [4] [8] = {{"Espadas"}, {"Paus"}, {"Copas"}, {"Ouros"}};
int main(){
system ("title SORTEANDO CARTAS");
srand(time(NULL));
do{
system("cls");
b = rand() % 13;
printf("\n%s", carta [b]);
c = rand() % 4;
printf("\n%s", nipes [c]);
getche();
}while(1);
}
Nenhum comentário:
Postar um comentário
Observação: somente um membro deste blog pode postar um comentário.