1 Star 0 Fork 0

schwarizard / Chapter 11

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Hare 613 Bytes
一键复制 编辑 原始数据 按行查看 历史
schwarizard 提交于 2016-04-11 19:00 . new file
public class Hare implements Runnable {
private boolean[] flags = {true, false};
private int totalStep;
private int step;
public Hare(int totalStep) {
this.totalStep = totalStep;
}
@Override
public void run() {
while (step < totalStep) {
boolean isHareSleep = flags[((int)(Math.random() * 10)) % 2];
if(isHareSleep) {
System.out.println("兔子睡着了zzzz");
}else {
step += 2;
System.out.printf("兔子跑了 %d 步 %n", step);
}
}
}
}
Java
1
https://gitee.com/schwarizard/Chapter-11.git
git@gitee.com:schwarizard/Chapter-11.git
schwarizard
Chapter-11
Chapter 11
master

搜索帮助