真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

java大轉(zhuǎn)盤抽獎代碼 java實(shí)現(xiàn)大轉(zhuǎn)盤抽獎

公司年會要進(jìn)行抽獎活動java代碼實(shí)現(xiàn)

參考

10年的十堰鄖陽網(wǎng)站建設(shè)經(jīng)驗(yàn),針對設(shè)計、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應(yīng)快,48小時及時工作處理。全網(wǎng)營銷推廣的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動調(diào)整十堰鄖陽建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計,從而大程度地提升瀏覽體驗(yàn)。創(chuàng)新互聯(lián)從事“十堰鄖陽網(wǎng)站設(shè)計”,“十堰鄖陽網(wǎng)站推廣”以來,每個客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。

int custNO;//客戶會員號(說明:customer指客戶)

System.out.println ("請輸入四位會員卡號:");//輸入會員卡號

Scanner input = new Scanner(System.in);

custNO = input.nextInt();

if (custNo 1000){

//獲得每位數(shù)字(a/b是除a%b是取余)

int gewei = custNO % 10 ; //分解獲得個位數(shù) 1001 %10 ==1

int shiwei = custNO /10 %10 ; //分解獲得十位數(shù) //1234 /10 % 10 = 123 %10 =3 (1234 /10 = 123.4 % 10 )

int baiwei = custNO /100 %10 ;//分解獲得百位數(shù)

int qianwei = custNO /1000 ; //分解獲得千位數(shù)

}

//計算數(shù)字之和

int sum = gewei + shiwei + baiwei + qianwei ;

System.out.println ("會員卡號"+custNO +"各位之和:" + sum );

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

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

解決辦法很多,

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

也可以使用集合來抽取,把集合順序打亂,然后隨便抽幾個就可以了

參考代碼:數(shù)組法

import?java.util.Random;

public?class?Test?{

public?static?void?main(String[]?args)?{

int?stuNums=30;

int[]?nums=new?int[stuNums];//存儲學(xué)號的數(shù)組

boolean[]?flags=new?boolean[stuNums];//標(biāo)記,用于標(biāo)記對應(yīng)下標(biāo)的學(xué)號是否已經(jīng)被抽取過了

for?(int?i?=?0;?i??stuNums;?i++)?{

nums[i]=i+1;//給學(xué)號賦值

}

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));

}

}

能不能幫我寫一個模擬抽獎機(jī)的JAVA代碼 1到32的八個數(shù)字

代碼如下:

import java.awt.*;

import java.awt.event.*;

import javax.swing.*;

public class Luck extends JFrame implements ActionListener{

JTextField tf = new JTextField();

JButton b1 = new JButton("開始");

JButton b2 = new JButton("停止");

boolean isGo = false;

public Luck(){

b1.setActionCommand("start");

JPanel p = new JPanel();

p.add(b1);

p.add(b2);

b1.addActionListener(this);

b2.addActionListener(this);

b2.setEnabled(false);

this.getContentPane().add(tf,"North");

this.getContentPane().add(p,"South");

this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

this.setSize(300,200);

this.setLocation(300,300);

Cursor cu = new Cursor(Cursor.HAND_CURSOR);

this.setCursor(cu);

this.setVisible(true);

tf.setText("welcome you! ");

this.go();

}

public void go(){

while(true){

if(isGo == true){

String s = "";

for(int j = 1; j = 8;j++){

int i = (int)(Math.random() * 31) + 1;

if(i 10){

s = s + " 0" + i;

}else{

s = s + " " + i;

}

}

tf.setText(s);

}

try{

Thread.sleep(10);

}catch(java.lang.InterruptedException e){

e.printStackTrace();

}

}

}

public void actionPerformed(ActionEvent e){

String s = e.getActionCommand();

if(s.equals("start")){

isGo = true;

b1.setEnabled(false);

b2.setEnabled(true);

}else{

isGo = false;

b2.setEnabled(false);

b1.setEnabled(true);

}

}

public static void main(String[] args){

new Luck();

}

}

看下是你的要求不。若有疑問Hi我。


本文題目:java大轉(zhuǎn)盤抽獎代碼 java實(shí)現(xiàn)大轉(zhuǎn)盤抽獎
本文鏈接:http://weahome.cn/article/ddehihc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部