Question d’entretien chez Comcast

Write a java program to shuffle the deck of cards.

Réponse à la question d'entretien

Utilisateur anonyme

9 juil. 2018

import java.util.Random; public class ShuffleCardDeck { public static void main(String[] args) { int numOfCards = 52; int[] cards = new int[52]; for(int i=0; i

1