// deals 1 (default) round of 10 handed poker and // displays each hand's cards and rank // used to test validity of program class test2 { public static void main(String [] args) { final int numberofplayers = 10; final int iter = 1; deck a = new deck(true); card [][] pocket = new card[2][numberofplayers]; card [] board = new card[5]; card [] burn = new card[3]; hand [] h = new hand[numberofplayers]; for(int i=0;i