Template:Rand
![]() | 此模板目前缺乏相關中文使用說明。 請能清楚敘述本模板的用途及使用方法的編輯者協助編寫說明文件或者翻譯其他語言版本。 本模板可能使用了模板參數,若無完整的使用說明將不便於他人了解、引用、維護與修改。 |
This template generates a pseudo-random integer between 0 and count-1.
- Usage:
- {{Rand|count|seed|prime}}
- All parameters are optional and have default values. They must be integers.
- The default count is 100 (so by default, this template generates values between 0 and 99) and must be non-zero.
- The default seed is {{#time:z}} and can be set to any other integer value (used to generate distinct values on the same page).
- The default prime is 89 and should be a prime number above 17 (used to generate distinct values on the same page).
- Examples generating numbers between 0 and 999:
- {{Rand|1000}} = 526
- {{Rand|1000|48|89}} = 526 (same as above)
- {{Rand|1000|48|61}} = 222 (this and others should all be different)
- {{Rand|1000|6}} = 828
- {{Rand|1000|5}} = 859
- {{Rand|1000|4}} = 890
- {{Rand|1000|3}} = 921
- {{Rand|1000|2}} = 952
- {{Rand|1000|1}} = 983
- {{Rand|1000|0}} = 14
- {{Rand|1000|1|17}} = 502 (varying the prime number)
- {{Rand|1000|1|19}} = 854
- {{Rand|1000|1|23}} = 542
- {{Rand|1000|1|29}} = 134
- {{Rand|1000|1|31}} = 574
- {{Rand|1000|1|37}} = 982
- {{Rand|1000|1|41}} = 894
- {{Rand|1000|1|43}} = 62
- {{Rand|1000|1|47}} = 22
- {{Rand|1000|1|51}} = 414
- {{Rand|1000|1|53}} = 622
- {{Rand|1000|1|59}} = 174
- {{Rand|1000|1|61}} = 134
- {{Rand|1000|1|67}} = 702
- {{Rand|1000|1|71}} = 54
- {{Rand|1000|1|73}} = 342
- {{Rand|1000|1|79}} = 534
- Note:
- Varying seed linearly generates numbers that generate a linear sequence on the same page, with equal cyclic steps;
- Varying prime (provided that they are odd prime numbers) generates pseudo-random that have independent random distribution.
- Note that when count is even (such as 100 by default, or 1000 in the examples above), the generated numbers (on the same page) are all odd or all even when you are varying the seed or prime, unless half of the calls use an even seed and the others used an odd seed. However, later invokations will still alternate odd and even numbers on output (this problem only occurs on the same page where multiple random numbers are invoked).
- On the same page, multiple invokations of this template with the same parameters will generate the same ouput value, so it is possible to create multiple links related to the same article.
参见
- {{rand2}},类似的模板。
上述文档嵌入自Template:Rand/doc。 (编辑 | 历史) 编者可以在本模板的沙盒 (编辑 | 差异)和测试样例 (创建)页面进行实验。 请在/doc子页面中添加分类。 本模板的子页面。 |