码迷,mamicode.com
首页 > 编程语言 > 详细

JavaCodeTra 36选7 彩票抽奖

时间:2017-06-08 22:24:43      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:好的   math   har   tracking   art   auth   string   choice   csdn   

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

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 彩票抽奖

标签:好的   math   har   tracking   art   auth   string   choice   csdn   

原文地址:http://www.cnblogs.com/cynchanpin/p/6964863.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!