如何在 PHP 中查找并打印两个数字之间的所有数字?
现在我要求用户提供两个号码。我正在尝试打印 $one 和 $two 之间的数字,假设 $one 小于 $two。
Right now I'm asking the user for two numbers. I'm trying to print the numbers in between $one and $two assuming $one is smaller than $two.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
range
给出一个包含所有数字的数组。您可以迭代它:
或者简单地使用循环:
range
gives an array containing all the numbers.You can iterate over that:
Or simply use a loop:
range($one, $two) 创建一个从 $one 到 $two 的数字数组。
在此示例中,数字数组在打印之前首先存储在 $numbers 中。
如果 $one 是 5 并且 $two 是 10 这些示例将输出:
range($one, $two) makes an array of numbers from $one to $two.
In this example, the array of numbers are first stored in $numbers before they are printed.
If $one is 5 and $two is 10 these examples will output:
只需一个简单的
for
循环就可以解决问题:Just a simple
for
loop should do the trick:这听起来像是家庭作业...
这实际上只能得到之间的数字,而不是端点。
This sounds like homework...
This really gets you only the numbers between, not the endpoints.