标签: ruby
如何将此语句运行26次
player_a.add_to_top(orig_deck.deal)
答案 0 :(得分:2)
使用Integer#times:
Integer#times
26.times {player_a.add_to_top(orig_deck.deal)}