How to change 10 cards to jack queen and king

1 次查看(过去 30 天)
I am making a blackjack game that involves 2 decks. I need to assign the number one cards to Ace's and the 10's to jacks, queens and kings.
my code:
%Making the deck of cards
cardValues = [1:13, 1:13, 1:13, 1:13,1:13, 1:13, 1:13, 1:13];
cardValues(cardValues>10) = 10;
if cardValues >= 10
cardValues = 10;
end
deck = [cardValues];
deck=deck(randperm(length(deck))); %this shuffles the cards

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Card games 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by