Advertisement
Guest User

a19p1.c

a guest
Oct 16th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.42 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. typedef enum valor_cartas{
  4.         um = 1,
  5.         dois = 2,
  6.         tres = 3,
  7.         quatro = 4,
  8.         cinco = 5,
  9.         seis = 6,
  10.         sete = 7,
  11.         oito = 8,
  12.         nove = 9,
  13.         dez = 10,
  14.         J = 11,
  15.         Q = 12,
  16.         K = 13,
  17.         A = 14,
  18.     }
  19.  
  20. typedef enum jogadas{
  21.         ace_high,
  22.         par,
  23.         par_duplo,
  24.         trinca,
  25.         straight,
  26.         flush,
  27.         full house,
  28.         quadra,
  29.         straight_flush,
  30.         royal straight,
  31.     }
  32.  
  33. int main(){
  34.  
  35.    
  36.    
  37.        
  38.    
  39.     return 0;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement