coding the drinking game "kings"
显示 更早的评论
I am supposed to code a game as a final project for my class and I was thinking that coding the drinking game "Kings" would be simple. Basically you pick a card and whatever rank you pick, there is a certain action you must do. So if you pull an ace, you must waterfall your drink. So there would just be 13 actions associated with the game that is it. I am not very good at coding and was hoping someone could show me how to start and then give me steps in completing this game.
5 个评论
Walter Roberson
2020-12-1
randperm(52) to get the shuffled deck. mod() 13 to get the rank 0 to 12. switch() on the rank.
Connor Mondock
2020-12-1
Walter Roberson
2020-12-1
deck = expression that shuffles the cards, returning a vector of card numbers
first_card = index deck to pull out the first value
first_rank = take mod of first_card and 13
switch first_rank
0: do something for ace
1: do something for deuce
end
Connor Mondock
2020-12-1
Connor Mondock
2020-12-1
回答(1 个)
Vimal Rathod
2020-12-3
0 个投票
Hi,
From the comments what Walter meant was to assign each card with numbers such as 0-12 for spades, 13-25 hearts and so on. So when you do randperm(52) you get random numbers that means the cards are shuffled.
You could use mod function to do modulo of that number. Suppose the number is 16 you do modulo of 13 and you get 3 which means the card has a number 4 on it and as its above 13 you have assigned it to hearts.
Refer the following link for modulo Function.
类别
在 帮助中心 和 File Exchange 中查找有关 Strategy & Logic 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!