Search found 1 match

by skysbsb
Sat May 12, 2007 7:00 am
Forum: Volume 103 (10300-10399)
Topic: 10315 - Poker Hands
Replies: 63
Views: 38805

i am trying solvind this problem with C++.. i try hard and not take any accepted submissions...

so, i get this source, in C.. submited and its ok!


#include <stdio.h>
#define get_value(x) ((x) / 10)
#define get_suit(x) ((x) % 10)

int encode_card(char *card)
{
int result;
switch (card[0 ...

Go to advanced search