博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
进阶のJAVA7
阅读量:5286 次
发布时间:2019-06-14

本文共 698 字,大约阅读时间需要 2 分钟。

public class ChooseBall{

public int redBall(){
int red=(int)(Math.random()*42);
return red;
}
public int whiteBall(){
int white=(int)(Math.random()*7);
return white;
}
public static void main(String[] args) {
int [] wb=new int[5];
int rb;
ChooseBall ball=new ChooseBall();
for(int i=0;i<5;i++){
wb[i]=ball.whiteBall();
System.out.println("############"+wb[i]);
for(int j=1;j<5;j++){
while(wb[i]==wb[j]){
wb[i]=ball.whiteBall();
System.out.println("!!!!!!!!!!!!!!!!!!!"+white);
break;
}
wb[i]=ball.whiteBall();
System.out.println("%%%%%%%%%%"+wb[i]);
}
System.out.println("White:"+wb[i]);
}
rb=ball.redBall();
System.out.println("Red:"+rb);
}
}

转载于:https://www.cnblogs.com/xiaolonging/p/3651294.html

你可能感兴趣的文章
Python3 文件操作详解
查看>>
PyTorch学习笔记之DataLoaders
查看>>
LeetCode Length of Last Word
查看>>
解决Flash和html在多标签浏览器中互访问题
查看>>
[LeetCode] First Bad Version
查看>>
Java面向对象编程之异常处理机制
查看>>
虚拟存储管理
查看>>
Loj10222 佳佳的Fibonacci(矩阵乘法)
查看>>
springboot集成quartz实现任务调度
查看>>
剑指offer——重建二叉树
查看>>
二叉树——在二叉树中找到一个节点的前驱节点
查看>>
8.Java语言基础:函数
查看>>
从前端接收时间类型,要在实体类中加上@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")注解...
查看>>
移动cell的位置
查看>>
iTOP-iMX6UL全能板-linux-usb-wifi的使用
查看>>
Django学习---笔记一
查看>>
树莓派开发板入门学习笔记2:[转]树莓派系统在VM中能做什么
查看>>
利用F#编写、理解Y组合子函数
查看>>
Flink学习笔记:Time的故事
查看>>
BZOJ3158 千钧一发(最小割)
查看>>