Ruby 新手:带有 5 位数字的计数器
您将如何创建这样的计数器方法: 第一:00001,第二:00002 百分之一:00100 等等? 谢谢
how would you create a counter method like this:
First: 00001, second: 00002
One-hundredth: 00100 and so on?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的问题不是很具体。您的问题到底是什么,格式化数字?如果是,可以这样完成:
对于整个范围,您可以映射它:
您还可以创建一个具有默认值的数组,如下所示:
然后像这样访问它们:
Your question is not very specific. What exactly is your problem, formatting the number? If yes, that can be done this way:
For an entire range, you could map over it:
You could also create an array with default values like this:
And then access them like this: