2022 - Implement a count of the cards remaining in the deck

From TRCCompSci - AQA Computer Science
Revision as of 12:23, 18 November 2021 by Admin (talk | contribs) (What you need to do)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Issue

A player loses if they run out of cards in the deck without solving the locks. However the program doesn't give any indication of how many cards are left in the deck.

Find the PlayGame method of the BreakThrough class, originally on line number 60 is this line:

Console.WriteLine("Current score: " + Score);

The number of cards remaining in the deck should be displayed after the score.

What you need to do

  • get the number of cards remaining in the deck (deck.GetNumberOfCards())
  • create a message to say how many cards remain in the deck