用java多线程编写龟兔赛跑,下面是数据:乌龟的速度为1米/1000毫秒,兔子的速度为1.2米/1000毫秒,全程800米,等兔子跑到第600米时选择休息120000毫秒,最后乌龟赢了
时间: 2024-02-24 12:58:03 浏览: 171
下面是根据您提供的数据,用Java编写的多线程实现龟兔赛跑的代码:
```java
public class Race {
public static void main(String[] args) {
Tortoise tortoise = new Tortoise();
Rabbit rabbit = new Rabbit();
tortoise.start();
rabbit.start();
}
}
class Tortoise extends Thread {
public void run() {
int total = 0;
while (total <= 800) {
total++;
System.out.println("乌龟跑了" + total + "米");
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
System.out.println("乌龟赢得了比赛!");
}
}
class Rabbit extends Thread {
public void run() {
int total = 0;
while (total <= 800) {
total += 1.2 * 1000;
System.out.println("兔子跑了" + total + "米");
if (total >= 600) {
System.out.println("兔子累了,休息一下...");
try {
Thread.sleep(120000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
System.out.println("兔子跑完了全程,但比赛输了!");
}
}
```
在这个程序中,我们分别创建了乌龟和兔子两个线程,然后让它们同时开始跑步。乌龟每次循环跑1米,兔子每次循环跑1.2米,并且在跑到第600米时暂停120000毫秒。
运行这个程序,你会看到乌龟最终赢得了比赛。
阅读全文