1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
#include <iostream>
#include <string>
#include <ctime>
using namespace std;
const int SIZE = 5;
class PlayingCard
{
private:
int faceVal;
int suitVal;
public:
PlayingCard();
};
PlayingCard::PlayingCard()
{
string cardVal[] = {"","Ace","One","Two","Three","Four","Five","Six","Seven",
"Eight","Nine","Ten","Jack","Queen","King"};
string cardSuit[] = {"","Spade","Heart","Clubs","Diamonds"};
}
class Hand
{
public:
Hand();
int getCard(int);
};
Hand::Hand()
{
PlayingCard aHand[SIZE];
srand((unsigned)time(NULL));
}
int Hand::getCard(int card)
{
return card;
}
int main()
{
Hand playerHand[SIZE];
for(int x = 0; x < SIZE; ++x)
{
}
system("pause");
return 0;
};
|