Write a java program to shuffle the deck of cards.
Réponse à la question d'entretien
Utilisateur anonyme
9 juill. 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