⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 deal.java

📁 初期JAVA学习非常有用的资料。帮助深入了解API。特别是Applet。
💻 JAVA
字号:
import java.util.*;class Deal {    public static void main(String args[]) {        int numHands = Integer.parseInt(args[0]);        int cardsPerHand = Integer.parseInt(args[1]);       // Make a normal 52-card deck        String[] suit = new String[] {"spades", "hearts", "diamonds", "clubs"};        String[] rank = new String[]            {"ace","2","3","4","5","6","7","8","9","10","jack","queen","king"};        List deck = new ArrayList();        for (int i=0; i<suit.length; i++)            for (int j=0; j<rank.length; j++)                deck.add(rank[j] + " of " + suit[i]);        Collections.shuffle(deck);        for (int i=0; i<numHands; i++)            System.out.println(dealHand(deck, cardsPerHand));    }    public static List dealHand(List deck, int n) {        int deckSize = deck.size();        List handView = deck.subList(deckSize-n, deckSize);        List hand = new ArrayList(handView);        handView.clear();        return hand;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -