JavaCodeTra 36选7 彩票抽奖

Posted cynchanpin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaCodeTra 36选7 彩票抽奖相关的知识,希望对你有一定的参考价值。

想写个小代码试试自己的运气。然并卵。并不能猜中

import java.util.Random;
import java.util.Scanner;

/**
 * 
 */

/**
 * @author Harry 36选7
 *
 */
public class SucMan {
	/**
	 * @param args
	 */
	public static void main(String[] args) {
		System.out.print("请输入您所选的7位数字:");
		int []CustChoice =new int [7] ;
		Scanner scanner = new Scanner (System.in);
		for(int i =0;i<7;i++){
			CustChoice[i]=scanner.nextInt() ;
		}
		
		Judge(CustChoice,getNum()) ;
		
	}
	private static int[] getNum(){
		System.out.println("摇号中:...");
		int []Res = new int [7] ;
		Random random = new Random () ;
		for(int i =0;i <7;i++){
			Res[i] = 1+Math.abs(random.nextInt()%36);
			for (int j = 0; j < i; j++)  {
				while (Res[j] == Res[i]) {
				i--;}
			}
		}
		int k= 0;
		while(k<7)
			System.out.print(Res[k++]+" ");
			System.out.println();
		System.out.println("经整理后本次的开奖号码为:");
		for(int i =0;i<7;i++){
			for(int j= 0;j<i;j++){
					if(Res[i]<Res[j]){
						int temp;
						temp = Res[i];
						Res[i]=Res[j];
						Res[j]=temp;
				}	
			}
		}
		int t= 0;
		while(t<7)
			System.out.print(Res[t++]+" ");
		return Res;
	}
	static int RightNum = 0 ;
	private static void Judge(int []CustChoice ,int []Res){
		int BallCount = 7;
		for(int i =0;i<7;i++){
				for(int j =0;j<7;j++) {
					if(CustChoice[i] ==Res[j] )
						RightNum++ ;
				}
			}	
		EndRes(RightNum) ;
	}
	private static void EndRes(int TestNum) {
		switch(TestNum){
		case 0:System.out.println("抱歉,您运气非常差,并没有猜中"); break;
		case 1:System.out.println("抱歉。您运气非常差,仅仅有猜中一个号"); break;
		case 2:System.out.println("抱歉。您运气差一点。猜中了俩"); break;
		case 3:System.out.println("能够的。中了十块钱"); break;
		case 4:System.out.println("好像中了三位数。能够吃顿好的"); break;
		case 5:System.out.println("四位数。能够考虑去买真的彩票了。您今天运气不错"); break;
		case 6:System.out.println("去买吧,然后中了分我一点!"); break;
		case 7:System.out.println("去买去买,我给你出钱,中了一半给我!!!"); break;
		default :System.out.print("居然出错了...");
		}
		
	}
}


最好的是猜中一个号- - 

技术分享




以上是关于JavaCodeTra 36选7 彩票抽奖的主要内容,如果未能解决你的问题,请参考以下文章

用java编写一个彩票抽奖程序

java课程设计-彩票购买抽奖程序

java课程设计---个人博客 彩票抽奖程序 201821123098 钟海清

集合框架练习7(彩票22选5)

java的彩票

Java基础项目(模拟双色球抽奖系统)