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 51 52 53 54 55 56 57
|
#include <vector>
#include <string>
#include <cstring>
#include <iostream>
#include <clocale>
using namespace std;
char suits[] = { 'H', 'D', 'C', 'S' };
string possible_cards[] = { "1", "2", "3", "4", "5", "6", "7",
"8", "9", "10", "J", "Q", "K", "A"};
// class
class Card {
public:
// constructor
Card(char suit, string value) : suit_(suit), value_(value) { };
// print our value to screen
void Print() {
cout << suit_ << value_ << endl;
}
private:
// members
char suit_;
string value_;
};
// class
class Deck {
public:
// constructor
Deck() {
for (char suit : suits) {
for (string card : possible_cards)
cards_.push_back(Card(suit, card));
}
}
// accessors
vector<Card>& cards() { return cards_; }
private:
// members
vector<Card> cards_;
};
/**
* Main method
*/
int main() {
Deck new_deck;
cout << "Original Order:" << endl;
for (Card card : new_deck.cards())
card.Print();
}
|