Problem: Print a Deck of 52 Cards
Здравейте!
Исках да споделя с вас моето решението на тази задача. На този етап не успях да спазя изискванията точно. Реших я с два nested foreach loop-а и не успях да намеря смислен начин за ползване на switch cases. Всякакви съвети и мнения по въпроса са добре дошли :)
Условие:
⦁ Print a Deck of 52 Cards
Write a program that generates and prints all possible cards from a standard deck of 52 cards (without the jokers). The cards should be printed using the classical notation (like 5♠, A♥, 9♣ and K♦). The card faces should start from 2 to A. Print each card face in its four possible suits: clubs, diamonds, hearts and spades. Use 2 nested for-loops and a switch-case statement.
Решение: https://github.com/stan87/EduProject/blob/master/Deck52Cards.cs
Благодаря!