摘要: //生成彩票数 System.out.println("生成的彩票数:"); Random cp = new Random(); for(int n=0;n<7;n++){ System.out.print(" " + cp.nextInt(33)); } S... 阅读全文