package com.company;
import java.util.Scanner;
public class Demo22 {
? ? public static void main(String[] args) {
? ? ? ? String answer = "y"; // 標(biāo)識是否繼續(xù)
? ? ? ? String userName = ""; // 用戶名
? ? ? ? String password = ""; // 密碼
? ? ? ? int cardNumber = 0;
? ? ? ? boolean isRegister = false;
? ? ? ? int max = 9999;
? ? ? ? int min = 1000;
? ? ? ? Scanner input = new Scanner(System.in);
? ? ? ? do {k
? ? ? ? ? ? System.out.println("***歡迎來到獎(jiǎng)客富翁系統(tǒng)***");
? ? ? ? ? ? System.out.println("\t1.注冊");
? ? ? ? ? ? System.out.println("\t2.登錄");
? ? ? ? ? ? System.out.println("\t3.抽獎(jiǎng)");
? ? ? ? ? ? System.out.println("**********************");
? ? ? ? ? ? System.out.print("請選擇菜單:");
? ? ? ? ? ? int choice = input.nextInt();
? ? ? ? ? ? switch (choice){
? ? ? ? ? ? ? ? case 1:
? ? ? ? ? ? ? ? ? ? System.out.println("[獎(jiǎng)客富翁系統(tǒng)>注冊]");
? ? ? ? ? ? ? ? ? ? System.out.println("請?zhí)顚憘€(gè)人注冊信息:");
? ? ? ? ? ? ? ? ? ? System.out.print("用戶名:");
? ? ? ? ? ? ? ? ? ? userName = input.next();
? ? ? ? ? ? ? ? ? ? System.out.println("密碼");
? ? ? ? ? ? ? ? ? ? password = input.next();
? ? ? ? ? ? ? ? ? ? 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;
? ? ? ? ? ? ? ? ? ? break;
? ? ? ? ? ? ? ? case 2:
? ? ? ? ? ? }
? ? ? ? }
? ? }
}