询问最多n只海龟

编程入门 行业动态 更新时间:2024-10-08 12:45:07
本文介绍了询问最多n只海龟的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

是否有一个内置功能可以查询多达n个海龟?因此,如果您询问50只海龟,但只有40只,它将询问那40只,然后继续前进.还是没有,它会继续前进.

Is there a built in function that will ask up to n-of turtles? So if you ask 50 turtles but there are only 40 it will ask those 40 and move on. Or there aren't any, it will just move on.

或者,有没有人能提供整洁的代码来实现这一目标?

Alternatively does anyone have any neat code for achieving this?

推荐答案

这将挑选出40只随机龟:

This will pick out 40 random turtles:

ask n-of 40 turtles [ <whatever you want them to do> ]

如果要在没有40个可用数字的情况下选择较小的数字,可以执行以下操作:

If you want to pick out a smaller number when there are not 40 available, you could do something like:

let num min (list 40 count turtles) ask n-of num turtles [ <whatever you want them to do> ]

更多推荐

询问最多n只海龟

本文发布于:2023-11-30 15:16:29,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1650476.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:最多   海龟

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!