博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第六次作业
阅读量:5024 次
发布时间:2019-06-12

本文共 785 字,大约阅读时间需要 2 分钟。

package xq;

import java.util.ArrayList;

import java.util.Collections;
import java.util.Random;

public class choujiang {

ArrayList cards;

public ArrayList
deal(){ if(cards==null){ cards = new ArrayList
(); for(int i =1;i<100;i++){ cards.add(i); } } Collections.shuffle(cards); return cards;}public void play(){ Random r = new Random(); int a = r.nextInt(100); System.out.println("一等奖:"+ cards.get(a)+"号"); cards.remove(a); for(int i=1;i<=3;i++){ a = r.nextInt(100); System.out.println("二等奖:"+cards.get(a)+"号"); cards.remove(a); }}public static void main(String[] args) {choujiang a=new choujiang();a.deal();a.play();}

905393-20160512090200249-252683668.png

转载于:https://www.cnblogs.com/qingqing2016/p/5484365.html

你可能感兴趣的文章
ARGB_8888
查看>>
quickSort by javascript
查看>>
判断手机旋转代码 屏幕旋转的事件和样式
查看>>
hdu1071算面积问题
查看>>
把一列多行数据合并成一条数据
查看>>
ansible之setup、条件判断、tags、循环handlers
查看>>
数据泵如何生成导出文件的DDL脚本
查看>>
Git/Bitbucket Workflow
查看>>
pygame学习资料
查看>>
6.上传前图片预览
查看>>
腾讯云:搭建 Node.js 环境
查看>>
status 返回当前请求的http状态码
查看>>
Docker基本操作
查看>>
向值栈放数据
查看>>
List集合(有序单列集合)
查看>>
初识跨终端Web
查看>>
CountDownTimer完整具体演示样例
查看>>
ubuntu删除g2o
查看>>
ThreadLocal的认知与见解
查看>>
利用Google Map API获取给定地址的经纬度
查看>>