91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
沐川县| 高尔夫| 凤翔县| 海丰县| 乐陵市| 涞源县| 阳东县| 公主岭市| 陵水| 永泰县| 玉树县| 崇文区| 蓬莱市| 炉霍县| 南木林县| 页游| 乌兰县| 杂多县| 昌宁县| 堆龙德庆县| 清镇市| 锦屏县| 亳州市| 大庆市| 沧源| 保山市| 夹江县| 仙游县| 永和县| 林西县| 桂东县| 松桃| 远安县| 江城| 界首市| 富源县| 建湖县| 潮安县| 离岛区| 朝阳市| 峡江县|