我有一份清单,列出了一定数量的“海龟”。 这只是一些法典,并非全部。
int nrTurtles = Keyboard.nextInt("How many turtles to create: ");
w = new GraphicsWindow(500, 300);
for (int k = 1; k <= nrTurtles; k++) {
Turtle t = new Turtle(w, 50, 50 + 10*k);
turtles.add(t);
}
And each turtle has a coordination value that i can get with (example):
turtles.get(0).getX() //this gets turtle nr 1 position
现在,如果两个或两个以上海龟,如何以智能方式行事。 取决于名单上有多少份?
<>And/strong>,如果两个或两个以上具有相同价值(450) i 想用system.out.print写“turtle1 and turtle2 are the,” ,如果出现这样的情况,就具有同样的价值。
www.un.org/Depts/DGACM/index_spanish.htm 如果只有一个带(450)和值(0>)的海龟,则只想写这一海龟,因为“海龟1是唯一的”。