coding the drinking game "kings"

1 回表示 (過去 30 日間)
Connor Mondock
Connor Mondock 2020 年 12 月 1 日
回答済み: Vimal Rathod 2020 年 12 月 3 日
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 件のコメント
Connor Mondock
Connor Mondock 2020 年 12 月 1 日
Okay thank you this will help me.
Connor Mondock
Connor Mondock 2020 年 12 月 1 日
Actually if you don't mind, could you show me how to do the mod() thing you are talking about? I do not understand that. I know how to get a random card from the deck and how to do the switch part but I do not know what you mean when you say "mod() of the ranks".

サインインしてコメントする。

回答 (1 件)

Vimal Rathod
Vimal Rathod 2020 年 12 月 3 日
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.

カテゴリ

Help Center および File ExchangeNumber games についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by