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

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

隨機幸運抽獎java代碼,隨機幸運抽獎java代碼

java抽獎程序

我給你個比較簡單的,,但是需要按照你的要求進行稍微的修改。。然后在main方法中去執(zhí)行就可以了:

成都創(chuàng)新互聯公司是一家專業(yè)提供延慶企業(yè)網站建設,專注與成都網站設計、成都網站制作、外貿網站建設、H5建站、小程序制作等業(yè)務。10年已為延慶眾多企業(yè)、政府機構等服務。創(chuàng)新互聯專業(yè)網站建設公司優(yōu)惠進行中。

public class GoodLuck {

int custNo;

int i=1;

String answer;

String awardName;

public void LuckNo(){

Scanner input=new Scanner(System.in);

System.out.println("\n我行我素購物管理系統 幸運抽獎\n");

do{

// 需要的話請把隨機數調整成你想要的范圍(我這個是為了測試方便寫的1

(~3的隨機數,根據你的需要把下面的3換成你想要的數字就行了)

int num=(int)(Math.random()*3+1);

System.out.print("請輸入會員卡號(4位整數):");

custNo=input.nextInt();

//百位數與隨機數相同的為幸運者

int bai=custNo/100%10;

while(i==1){

if(custNo=1000custNo=9999){

break;

}

else{

System.out.println("\n會員號碼輸入有誤,請重新輸入:");

custNo=input.nextInt();

continue;

}

}

if(bai==num){

showAward();

System.out.print("\n卡號:"+custNo+"是幸運客戶,獲得"+awardName);

}else{

System.out.print("\n卡號:"+custNo+"\t謝謝您的支持!");

}

System.out.println("\n是否繼續(xù)(y/n)");

answer=input.next();

while(i==1){

if(answer.equals("y")||answer.equals("n")){

break;

}else{

System.out.print("輸入有誤!請重新輸入:");

answer=input.next();

continue;

}

}

}while(!answer.equals("n"));

}

public void showAward(){

int num=(int)(Math.random()*3+1);

if(num==1){

awardName="Mp3";

}

else if(num==2){

awardName="美的微波爐";

}

else{

awardName="美的電飯鍋";

}

}

如何用java技術實現幸運抽獎活動系統

import java.util.Scanner;

public class LuckyNumber {

/**

* 幸運抽獎

*/

public static

void main(String[] args) {

String answer

= "y"; // 標識是否繼續(xù)

String

userName = ""; // 用戶名

String

password = ""; // 密碼

int cardNumber

= 0; // 卡號

boolean

isRegister = false; // 標識是否注冊

boolean

isLogin = false; // 標識是否登錄

int max =

9999;

int min =

1000;

Scanner input

= new Scanner(System.in);

do {

System.out.println("*****歡迎進入獎客富翁系統*****");

System.out.println("\t1.注冊");

System.out.println("\t2.登錄");

System.out.println("\t3.抽獎");

System.out.println("***************************");

System.out.print("請選擇菜單:");

int choice =

input.nextInt();

switch

(choice) {

case 1:

System.out.println("[獎客富翁系統

注冊]");

System.out.println("請?zhí)顚憘€人注冊信息:");

System.out.print("用戶名:");

userName =

input.next();

System.out.print("密碼:");

password =

input.next();

//

獲取4位隨機數作為卡號

cardNumber =

(int)(Math.random()*(max-min))+min;

System.out.println("\n注冊成功,請記好您的會員卡號");

System.out.println("用戶名\t密碼\t會員卡號");

System.out.println(userName

+ "\t" + password + "\t" + cardNumber);

isRegister =

true; // 注冊成功,標志位設置為true

break;

case 2:

System.out.println("[獎客富翁系統

登錄]");

if

(isRegister) { // 判斷是否注冊

//

3次輸入機會

for (int i

= 1; i = 3; i++) {

System.out.print("請輸入用戶名:");

String

inputName = input.next();

System.out.print("請輸入密碼:");

String

inputPassword = input.next();

if

(userName.equals(inputName) password.equals(inputPassword)) {

System.out.println("\n歡迎您:"

+ userName);

isLogin =

true; // 登錄成功,標志位設置為true

break;

} else if

(i 3) {

System.out.println("用戶名或密碼錯誤,還有"

+ (3 - i) + "次機會!");

} else

{

System.out.println("您3次均輸入錯誤!");

}

}

} else

{

System.out.println("請先注冊,再登錄!");

}

break;

case 3:

System.out.println("[獎客富翁系統

抽獎]");

if

(!isLogin) { // 判斷是否登錄

System.out.println("請先登錄,再抽獎!");

} else

{

//生成5個4位隨機數字,并保存在數組中

int[]

luckynums = new int[5];

for(int i

= 0; i luckynums.length; i++){

luckynums[i] =

(int)(Math.random()*(max-min))+min;

}

System.out.print("請輸入您的卡號:");

int

yourcard = input.nextInt();

int

i;

System.out.print("\n本日的幸運數字為:");

for (i = 0;

i luckynums.length; i++) {

System.out.print(luckynums[i]

+ " ");\

}

for (i = 0;

i luckynums.length; i++) {

if

(luckynums[i] == yourcard) {

System.out.println("\n恭喜!您是本日的幸運會員!");

break;

}

}

if (i ==

luckynums.length) {

System.out.println("\n抱歉!您不是本日的幸運會員!");

}

}

break;

default:

System.out.println("[您的輸入有誤!]");

break;

}

System.out.print("繼續(xù)嗎?(y/n):");

answer =

input.next();

System.out.println("");

} while

("y".equals(answer));

if

("n".equals(answer)) {

System.out.println("系統退出,謝謝使用!");

}

}

}

商場推出幸運抽獎活動的java初級代碼編寫

public class Lucky {

public static void main(String[] args){

System.out.println("請輸入您的4位會員卡號:");

Scanner sc = new Scanner(System.in);

int number = sc.nextInt(); //接收用戶從控制臺輸入的會員卡號,并保存在會員卡號變量中

int a = number/1000; //千位

int b = number%1000/100; //百位

int c = number%100/10; //十位

int d = number%10; //個位

if((a+b+c+d)20){

System.out.println("恭喜中獎!您是幸運客戶");

}else{

System.out.println("謝謝參與!");

}

}

}

最基礎的 沒有異常判斷 無限循環(huán)輸入什么東西

Java代碼實現抽獎:從班級的學號中抽出一個一等獎,兩個二等獎,三個三等獎

抽取問題, 重點是 同一個學號不能重復被抽取.

解決辦法很多,

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

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

參考代碼:數組法

import?java.util.Random;

public?class?Test?{

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

int?stuNums=30;

int[]?nums=new?int[stuNums];//存儲學號的數組

boolean[]?flags=new?boolean[stuNums];//標記,用于標記對應下標的學號是否已經被抽取過了

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

nums[i]=i+1;//給學號賦值

}

Random?r=new?Random();

while(true){

int?index?=?r.nextInt(stuNums);

if(!flags[index]){

System.out.println("A等:"+nums[index]);

flags[index]=true;?//標記已經被使用過了

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--;//如果已經被抽取過了?,那么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));

}

}

初學小白,請問這個java代碼怎么敲,最好附帶敲好的代碼截圖,謝謝

主要程序如下,自己進行調試

public

static

void

main(String

[]args){

System.out.println("我行我素購物管理系統

幸運抽獎");

boolean

isContinue=true;

while(isContinue){

System.out.print("請輸入4位會員號:");

//輸入會員號

Scanner

sc

=

new

Scanner(System.in);

String

str

=

sc.next();

System.out.println();

Random

random

=

new

Random();

System.out.print(str+"\t");

//生成1000到9999之間的一個隨機數代表中獎號碼

int

rand

=

random.nextInt(8999)+1000;

//如果隨機號碼與輸入號碼相同,打印中獎信息

if(rand

.toString()==str){

System.out.println("是幸運客戶,獲得精美Mp3一個。");

}else{

System.out.println("謝謝您的支持!");

}

System.out.print("是否繼續(xù)(y/n):");

//輸入是否繼續(xù)的字符

Scanner

sc1

=

new

Scanner(System.in);

if(sc.next()=="n"){

//如果輸入的是n,則將isContinue賦值為false,下一次循環(huán)就不會執(zhí)行

isContinue=false;

System.out.print("程序結束!");

}

}

}

本代碼段只寫了主程序,引包之類的也自己完成

本程序是手寫,沒有編譯器檢驗,可能有不正確的地方

自己進行調試,思路沒有問題,希望你盡快學到我所使用的基礎知識

用java完成一個抽獎的程序。 每次運行程序,都會從以下的抽獎結果中隨機顯示一個出來:

生成100個對象,對象有個屬性,其中10個是大獎,40個是小獎,50個是無獎。

放到一個List里。

每次抽中的步驟

1、隨機生成0-List長度之間的數值 ,去取List中的相應對象,并移除這個對象。

代碼如下。:

獎品對象類:

public class PrizeBean {

private String type;

public String getType() {

return eggType;

}

public void setType(String eggType) {

this.eggType = eggType;

}

}

獎品池初始化代碼段:

{

List prizebeanList = new ArrayList();

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

PrizeBean prizeBean = new PrizeBean();

prizeBean.setType(“大獎“);

prizebeanList.add(prizeBean);

}

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

PrizeBean prizeBean = new PrizeBean();

prizeBean.setType(“小獎“);

prizebeanList.add(prizeBean);

}

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

PrizeBean prizeBean = new PrizeBean();

prizeBean.setType(“無獎“);

prizebeanList.add(prizeBean);

}

}

抽獎代碼段:

/**

*獎品池已經空的,肯定返回無獎了。。。

**/

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

- 沒有中獎哦,下次加油!

return;

}

/**

* 隨機生成,獎品池中獎品數量的數字。。取出獎品池中的數字。。移除記錄。返回。。

*/

int resultnum = (int) (Math.random() * prizebeanList.size());

PrizeBean resultPrizeBean = prizebeanList.get(resultnum);

prizebeanList.remove(resultPrizeBean);

if(resultPrizeBean.getType() .eqauls("大獎"){

- 恭喜,大獎!

}else if(resultPrizeBean.getType() .eqauls("小獎"){

- 運氣不錯哦,小獎!

}else{

- 沒有中獎哦,下次加油!

}.


當前名稱:隨機幸運抽獎java代碼,隨機幸運抽獎java代碼
網頁URL:http://weahome.cn/article/hdhhjs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部