中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

java編寫抽獎(jiǎng)代碼 java隨機(jī)抽獎(jiǎng)代碼

用java完成一個(gè)抽獎(jiǎng)的程序。 每次運(yùn)行程序,都會(huì)從以下的抽獎(jiǎng)結(jié)果中隨機(jī)顯示一個(gè)出來:

生成100個(gè)對象,對象有個(gè)屬性,其中10個(gè)是大獎(jiǎng),40個(gè)是小獎(jiǎng),50個(gè)是無獎(jiǎng)。

我們提供的服務(wù)有:網(wǎng)站設(shè)計(jì)、成都網(wǎng)站設(shè)計(jì)、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、義安ssl等。為上千家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的義安網(wǎng)站制作公司

放到一個(gè)List里。

每次抽中的步驟

1、隨機(jī)生成0-List長度之間的數(shù)值 ,去取List中的相應(yīng)對象,并移除這個(gè)對象。

代碼如下。:

獎(jiǎng)品對象類:

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(“無獎(jiǎng)“);

prizebeanList.add(prizeBean);

}

}

抽獎(jiǎng)代碼段:

/**

*獎(jiǎng)品池已經(jīng)空的,肯定返回?zé)o獎(jiǎng)了。。。

**/

if(prizebeanList.size()==0){

- 沒有中獎(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{

- 沒有中獎(jiǎng)哦,下次加油!

}.

Java代碼實(shí)現(xiàn)抽獎(jiǎng):從班級的學(xué)號(hào)中抽出一個(gè)一等獎(jiǎng),兩個(gè)二等獎(jiǎng),三個(gè)三等獎(jiǎng)

抽取問題, 重點(diǎn)是 同一個(gè)學(xué)號(hào)不能重復(fù)被抽取.

解決辦法很多,

比如數(shù)組可以使用下標(biāo)來標(biāo)記,號(hào)碼是否被使用,使用了就繼續(xù)下一次抽取

也可以使用集合來抽取,把集合順序打亂,然后隨便抽幾個(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)記對應(yīng)下標(biāo)的學(xué)號(hào)是否已經(jīng)被抽取過了

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)被使用過了

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)被抽取過了?,那么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));

}

}

商場推出幸運(yùn)抽獎(jiǎng)活動(dòng)的java初級代碼編寫

public class Lucky {

public static void main(String[] args){

System.out.println("請輸入您的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ǔ)的 沒有異常判斷 無限循環(huán)輸入什么東西

用java做一個(gè)抽獎(jiǎng)的代碼

要在cmd下運(yùn)行啊 我想你安裝JDK沒?

import java.util.*;

class Test{

private int maxSize=0;

private int selectSize=0;

private ListInteger list=new ArrayListInteger();

private int[] one=new int[7];

public Test(int maxSize,int selectSize){

this.maxSize=maxSize;

this.selectSize=selectSize;

one=new int[selectSize];

for(int i=1;i=maxSize;i++)

list.add(Integer.valueOf(i));

}

public void open(){

ListInteger temp=new ArrayListInteger();

temp.addAll(list);

int[] p=new int[selectSize];

int tag=0;

for(int i=0;iselectSize;i++){

tag=(int)(Math.random()*555555%temp.size());

p[i]=(Integer)temp.get(tag).intValue();

temp.remove(tag);

}

one=p;

}

public void paixu(){

int temp=0;

for(int i=0;iselectSize;i++){

for(int j=0;jselectSize-1;j++){

if(one[j]one[j+1]) {temp=one[j];one[j]=one[j+1];one[j+1]=temp;}

}

}

}

public void printOpen(){

open();

paixu();

for(int i=0;ione.length;i++)

System.out.print(one[i]+" ");

System.out.println();

}

static public void main(String[] str){

Test t=new Test(33,6); //彩票類型:33選6

for(int i=0;i10;i++) //開10次獎(jiǎng)

t.printOpen();

}

}

網(wǎng)頁標(biāo)題:java編寫抽獎(jiǎng)代碼 java隨機(jī)抽獎(jiǎng)代碼
網(wǎng)頁鏈接:http://m.rwnh.cn/article46/hiigeg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站維護(hù)、建站公司搜索引擎優(yōu)化、靜態(tài)網(wǎng)站、網(wǎng)頁設(shè)計(jì)公司營銷型網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都定制網(wǎng)站建設(shè)
丰台区| 庆云县| 尼木县| 丹江口市| 诸暨市| 武川县| 苏尼特右旗| 搜索| 益阳市| 宜丰县| 永德县| 铜川市| 普洱| 绥芬河市| 扎兰屯市| 沂水县| 陵川县| 许昌县| 扶沟县| 莫力| 广宗县| 汉源县| 车险| 永康市| 吴川市| 尼玛县| 施秉县| 武冈市| 新昌县| 丰都县| 林甸县| 阿拉善左旗| 保康县| 宁阳县| 宣威市| 上思县| 满洲里市| 临泉县| 德安县| 罗源县| 荃湾区|