// filename: deck.cpp -- partially filled #include #include #include using namespace std; #include "deck.h" Deck::Deck() { srand(time(0)); // seed the random number generator for (int i = 0; i < NUMSUITS; i++) for (int j = 0; j < NUMNUMS; j++) deck[(i * NUMNUMS) + j] = Card(suits[i], nums[j]); } // // YOU WRITE the three METHODs HERE //