中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
县级市| 沙洋县| 白水县| 若羌县| 纳雍县| 周口市| 浦江县| 嫩江县| 金秀| 循化| 图片| 磐安县| 无极县| 阜康市| 内丘县| 大田县| 永宁县| 罗定市| 横峰县| 舒城县| 七台河市| 余姚市| 鹤山市| 阿鲁科尔沁旗| 乌海市| 故城县| 施甸县| 云南省| 静海县| 无极县| 巨野县| 兴城市| 九江市| 积石山| 建德市| 新和县| 宜兰市| 七台河市| 宁波市| 台湾省| 浙江省|