想写个小代码试试自己的运气,然并卵,并不能猜中
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("竟然出错了..."); } } }
最好的是猜中一个号- -
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/hhooong/article/details/46889253