首页 > 代码库 > JavaCodeTra 36选7 彩票抽奖
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 彩票抽奖
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。