亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

java如何實現幸運抽獎功能

小億
246
2023-08-15 00:50:33
欄目: 編程語言

在Java中實現幸運抽獎功能,可以使用隨機數來進行抽獎。以下是一個簡單的實現示例:

import java.util.ArrayList;
import java.util.List;
import java.util.Random;
public class LuckyDraw {
private List<String> participants;  // 參與抽獎的人員列表
public LuckyDraw() {
participants = new ArrayList<>();
}
// 添加參與抽獎的人員
public void addParticipant(String participant) {
participants.add(participant);
}
// 進行抽獎
public String draw() {
if (participants.isEmpty()) {
return "抽獎人員列表為空";
}
Random random = new Random();
int luckyIndex = random.nextInt(participants.size());  // 隨機生成一個幸運索引
String luckyParticipant = participants.get(luckyIndex);  // 獲取幸運參與者
participants.remove(luckyIndex);  // 從列表中移除幸運參與者
return luckyParticipant;
}
public static void main(String[] args) {
LuckyDraw luckyDraw = new LuckyDraw();
luckyDraw.addParticipant("張三");
luckyDraw.addParticipant("李四");
luckyDraw.addParticipant("王五");
luckyDraw.addParticipant("趙六");
String luckyParticipant = luckyDraw.draw();
System.out.println("抽中的幸運參與者是:" + luckyParticipant);
}
}

運行以上代碼,輸出的結果為一個隨機抽中的幸運參與者的姓名。

0
嵊泗县| 吴桥县| 东明县| 吉木乃县| 沈阳市| 阿坝| 平顶山市| 江华| 临邑县| 洛隆县| 昌吉市| 诸暨市| 蕉岭县| 息烽县| 礼泉县| 布尔津县| 东光县| 香港| 资兴市| 镇平县| 邹城市| 东乡| 元朗区| 辽源市| 苏尼特左旗| 方山县| 榆社县| 永寿县| 通山县| 乳山市| 富宁县| 柘荣县| 甘孜| 怀化市| 清苑县| 普定县| 连云港市| 枣强县| 大新县| 马边| 常山县|