《JAVA练习题目1》 模拟彩票中奖

news/2024/12/1 0:35:05/
import java.util.Scanner;public class text {public static void main(String[] args) {// TODO Auto-generated method stubint number[] = new int[7];Scanner scan = new Scanner(System.in);int user[] = new int[7];System.out.println("请输入您选定的号码:");for (int N = 0; N < 7; N++) {user[N] = scan.nextInt();if(user[N]<0||user[N]>35){System.out.println("第"+(N+1)+"个数字越界,请重新输入!");N--;continue;}for (int j = 0; j < N; j++) {if (user[N] == user[j]) {System.out.println("第"+(N+1)+"个数字与第" +(j+1)+"个数字相同,请重新输入!");N--;break;}}}sort(user,7);System.out.println("您输入的号码为:");for (int x : user) {System.out.print(x + " ");}for (int n = 0; n < 7; n++) {label: while (true) {double a = 35 * Math.random() + 1;number[n] = (int) a;for (int j = 0; j < n; j++) {if (number[n] == number[j]) {continue label;}}break;}}System.out.println("福利彩票35选7号码为:");sort(number, 7);for (int x : number) {System.out.print(x + " ");}int counter=0;for(int i=0;i<7;i++){for(int x:number){if(user[i]==x){counter++;}}}System.out.println();System.out.println("有"+counter+"个数字中奖了");scan.close();}static void sort(int a[], int length) {int n = length;int i = 0, j = 0;for (i = 0; i < n; i++) {for (j = 0; j < n - 1 - i; j++) {if (a[j] > a[j + 1]) {int b = a[j + 1];a[j + 1] = a[j];a[j] = b;}}}}}

http://www.ppmy.cn/news/183395.html

相关文章

买一注彩票平均中奖的金额

今天运气不错&#xff0c;想买注彩票&#xff0c;大致算了下花2块买七星彩平均能中多少钱 static void ticket() {//1234567long first 5000000;//7long second 500000;//6long third 1800;//5long fourth 300;//4long fifth 20;//3long sixth 5;//2long total (long) …

彩票软件自动买彩的中奖情况,以后将连续出有中奖结果

自己利用业余时间根据自己多年来买彩票的经验写了这套彩票分析,购买软件,基本有下面几个功能:历史记录的录入,历史数据分析,购买时的数据分析,购买数据智能过滤,购买记录打印,自动兑奖保存等.... 下载试用地址:http://download.csdn.net/source/232637提示:下载可能未配置数据…

Python预测双色球福利彩票中奖号码(随便玩玩,不要当真)

前言 铁子们应该都是听说过双色球的吧 双色球是中国福利彩票的一种玩法 红球一共6组&#xff0c;每组从1-33中抽取一个&#xff0c;六个互相不重复。然后蓝球是从1-16中抽取一个数字&#xff0c;这整个组成的双色球 今天&#xff0c;我们就用Python来统计一下各号码的中奖概…

今晚的福利彩票的中奖号码是

#include<iostream> #include<iomanip> #include<time.h> using namespace std; int fun(int h,int a[],int i); void main() {int i1,h,a[6],k0; srand(time(0)); a[0]rand()%33; while(a[0]0) //除去a[0]中的0 { a[0]rand()%33; } cout<<"今晚…

彩票中奖几率计算公式

在n个数中选择k个来抽奖&#xff0c;那么中奖几率为n*(n-1)(n-2)……..(n-k1) / 1*2*3*……k

用python模拟双色球中奖,看看怎么买彩票最科学

最近自学python&#xff0c;主要还是被铺天盖地的广告洗了个脑&#xff0c;完全外行&#xff0c;学python就是为了好玩和轻量化的自动办公。然后一日突发奇想&#xff0c;双色球是概率问题&#xff0c;但是有单注和复式的玩法&#xff0c;那么怎么买比较科学呢&#xff1f;所以…

JAVA模拟福利彩票双色球(选号,判断是否中奖,以及中奖号码)

一&#xff0c;双色球中奖规则&#xff08;均不分顺序&#xff09;&#xff1a; 一等奖&#xff1a;6个红球1个蓝球号码完全相同-奖金波动9000000元左右 二等奖&#xff1a;6个红球0个蓝球号码相同-奖金波动150000元左右 三等奖&#xff1a;5个红球1个蓝球号码相同-3000元 四等…

如果你提前知道了下期彩票中奖号码

昨天看了《蝴蝶效应》回想起一个之前想了很久的问题。 如果你有能力到了未来世界&#xff0c;并获知了下一期的彩票中奖号&#xff08;并且知道了自己没有中奖&#xff09;。然后又回到实现&#xff0c;如果你真的去买那一注中奖彩票。就一定能中吗&#xff1f;