2.0 KiB
card_deck
Instructions
Represent cards from a desk
-
A standard deck of cards has 52 cards: 4 suits and 13 cards per suit
-
Start by creating the
Suit
enum and implement the associated functionrandom
which returns a randomSuit
(Heart
,Diamond
,Spade
orClub
) -
Then create the
Rank
enum that can have the valueAce
,King
,Queen
,Jack
, andNumber
associated to anu8
value to represent the ranks 2 through 10 After create an associated function toRank
calledRandom
that returns a randomRank
-
Finally create a structure name
Card
which has the fieldssuit
andrank
Define:
The associated function translate
for Rank and Suite
- for
Suit
,tranlate
makes the translation between an integer value (u8) and the suit of a card (1 -> Heart, 2 -> Diamonds, 3 -> Spade, 4 -> Club) - for
Rank
,translate
makes the tranlation between an integer value (u8) and the rank ( 1 -> Ace, 2 -> 2, .., 10 -> 10, 11 -> Jack, 12 -> Queen, 13 -> King)
The associated function random
for Rank
and Suit
which returns a random rand and suit respectively
Finally define the function winner_card
that returns true if the card passed as an argument is an Ace of spades
Expected Functions and Structures
pub fn random() -> Suit {
}
pub fn translate(value: u8) -> Suit {
}
pub fn random() -> Rank {
}
pub fn traslate(value: u8) -> Rank {
}
pub enum Suit {
}
pub enum Rank {
}
pub struct Card {
pub suit: Suit,
pub rank: Rank,
}
Usage
Here is a program to test your function
fn main() {
let your_card = Card {
rank: Rank::random(),
suit: Suit::random(),
};
println!("You're card is {:?}", your_card);
// Now if the card is an Ace of Spades print "You are the winner"
if card_deck::winner_card(your_card) {
println!("You are the winner!");
}
}
And its output
student@ubuntu:~/[[ROOT]]/test$ cargo run
You're card is Card { suit: Club, rank: Ace }
student@ubuntu:~/[[ROOT]]/test$