生成100個(gè)對(duì)象,對(duì)象有個(gè)屬性,其中10個(gè)是大獎(jiǎng),40個(gè)是小獎(jiǎng),50個(gè)是無(wú)獎(jiǎng)。
成都創(chuàng)新互聯(lián)專(zhuān)業(yè)為企業(yè)提供阿克陶網(wǎng)站建設(shè)、阿克陶做網(wǎng)站、阿克陶網(wǎng)站設(shè)計(jì)、阿克陶網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)與制作、阿克陶企業(yè)網(wǎng)站模板建站服務(wù),十年阿克陶做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
放到一個(gè)List里。
每次抽中的步驟
1、隨機(jī)生成0-List長(zhǎng)度之間的數(shù)值 ,去取List中的相應(yīng)對(duì)象,并移除這個(gè)對(duì)象。
代碼如下。:
獎(jiǎng)品對(duì)象類(lèi):
public class PrizeBean {
private String type;
public String getType() {
return eggType;
}
public void setType(String eggType) {
this.eggType = eggType;
}
}
獎(jiǎng)品池初始化代碼段:
{
List prizebeanList = new ArrayList();
for (int i = 0; i 10; i++) {
PrizeBean prizeBean = new PrizeBean();
prizeBean.setType(“大獎(jiǎng)“);
prizebeanList.add(prizeBean);
}
for (int i = 0; i 40; i++) {
PrizeBean prizeBean = new PrizeBean();
prizeBean.setType(“小獎(jiǎng)“);
prizebeanList.add(prizeBean);
}
for (int i = 0; i 50; i++) {
PrizeBean prizeBean = new PrizeBean();
prizeBean.setType(“無(wú)獎(jiǎng)“);
prizebeanList.add(prizeBean);
}
}
抽獎(jiǎng)代碼段:
/**
*獎(jiǎng)品池已經(jīng)空的,肯定返回?zé)o獎(jiǎng)了。。。
**/
if(prizebeanList.size()==0){
- 沒(méi)有中獎(jiǎng)哦,下次加油!
return;
}
/**
* 隨機(jī)生成,獎(jiǎng)品池中獎(jiǎng)品數(shù)量的數(shù)字。。取出獎(jiǎng)品池中的數(shù)字。。移除記錄。返回。。
*/
int resultnum = (int) (Math.random() * prizebeanList.size());
PrizeBean resultPrizeBean = prizebeanList.get(resultnum);
prizebeanList.remove(resultPrizeBean);
if(resultPrizeBean.getType() .eqauls("大獎(jiǎng)"){
- 恭喜,大獎(jiǎng)!
}else if(resultPrizeBean.getType() .eqauls("小獎(jiǎng)"){
- 運(yùn)氣不錯(cuò)哦,小獎(jiǎng)!
}else{
- 沒(méi)有中獎(jiǎng)哦,下次加油!
}.
用隨機(jī)數(shù)不就行了
int number = (int)(Math. random() * 3) + 1;
然后后面用switch就可以了
public class Lucky {
public static void main(String[] args){
System.out.println("請(qǐng)輸入您的4位會(huì)員卡號(hào):");
Scanner sc = new Scanner(System.in);
int number = sc.nextInt(); //接收用戶從控制臺(tái)輸入的會(huì)員卡號(hào),并保存在會(huì)員卡號(hào)變量中
int a = number/1000; //千位
int b = number%1000/100; //百位
int c = number%100/10; //十位
int d = number%10; //個(gè)位
if((a+b+c+d)20){
System.out.println("恭喜中獎(jiǎng)!您是幸運(yùn)客戶");
}else{
System.out.println("謝謝參與!");
}
}
}
最基礎(chǔ)的 沒(méi)有異常判斷 無(wú)限循環(huán)輸入什么東西
抽取問(wèn)題, 重點(diǎn)是 同一個(gè)學(xué)號(hào)不能重復(fù)被抽取.
解決辦法很多,
比如數(shù)組可以使用下標(biāo)來(lái)標(biāo)記,號(hào)碼是否被使用,使用了就繼續(xù)下一次抽取
也可以使用集合來(lái)抽取,把集合順序打亂,然后隨便抽幾個(gè)就可以了
參考代碼:數(shù)組法
import?java.util.Random;
public?class?Test?{
public?static?void?main(String[]?args)?{
int?stuNums=30;
int[]?nums=new?int[stuNums];//存儲(chǔ)學(xué)號(hào)的數(shù)組
boolean[]?flags=new?boolean[stuNums];//標(biāo)記,用于標(biāo)記對(duì)應(yīng)下標(biāo)的學(xué)號(hào)是否已經(jīng)被抽取過(guò)了
for?(int?i?=?0;?i??stuNums;?i++)?{
nums[i]=i+1;//給學(xué)號(hào)賦值
}
Random?r=new?Random();
while(true){
int?index?=?r.nextInt(stuNums);
if(!flags[index]){
System.out.println("A等:"+nums[index]);
flags[index]=true;?//標(biāo)記已經(jīng)被使用過(guò)了
break;
}
}
for?(int?i?=?0;?i??2;?i++)?{
int?index?=?r.nextInt(stuNums);
if(!flags[index]){
System.out.println("B等:"+nums[index]);
flags[index]=true;
}else{
i--;//如果已經(jīng)被抽取過(guò)了?,那么i建議,再次循環(huán)
}
}
for?(int?i?=?0;?i??3;?i++)?{
int?index?=?r.nextInt(stuNums);
if(!flags[index]){
System.out.println("c等:"+nums[index]);
flags[index]=true;
}else{
i--;
}
}
}
}
集合法
import?java.util.ArrayList;
import?java.util.Collections;
public?class?Test2?{
public?static?void?main(String[]?args)?{
int?stuNums=20;
ArrayListInteger?list=new?ArrayListInteger();
for?(int?i?=?0;?i??stuNums;?i++)?{
list.add(i+1);
}
System.out.println("有序"+list);
Collections.shuffle(list);//打亂順序
System.out.println("亂序"+list);
System.out.println("A等"+list.get(0));
System.out.println("B等"+list.get(1));
System.out.println("B等"+list.get(2));
System.out.println("C等"+list.get(3));
System.out.println("C等"+list.get(4));
System.out.println("C等"+list.get(5));
}
}
package?ch07;
import?javax.swing.*;
public?class?Test2?{
public?static?void?main(String[]?args)?{
String?output="";
output+="恭喜第"+(1+(int)(Math.random()*100))+"號(hào)中了一等獎(jiǎng)";
output+="\n恭喜第"+(1+(int)(Math.random()*100))+"號(hào)"+(int)(1+(Math.random()*100))+"號(hào)"+"中了二等獎(jiǎng)";
for(int?i=0;i3;i++){
output+="\n恭喜第"+(1+(int)(Math.random()*100))+"號(hào)中了三等獎(jiǎng)";? ?
? ? }
JOptionPane.showMessageDialog(null,?output);
}
}
程序運(yùn)行結(jié)果截圖
中獎(jiǎng)的人是隨機(jī)的!
import?java.util.Scanner;
/**
*
*/
public?class?f?{
public?static?void?main(String?args[]){
Scanner?scan?=?new?Scanner(System.in);
System.out.print("請(qǐng)輸入抽獎(jiǎng)號(hào)碼上限:");
int?max?=?scan.nextInt();
System.out.print("請(qǐng)輸入抽獎(jiǎng)次數(shù):");
int?n?=?scan.nextInt();
System.out.print("中獎(jiǎng)號(hào)碼依次為:");
for(int?i=0;in;i++){
System.out.print((int)(Math.random()*max+1)+"?");
}
}
}