gpt4 book ai didi

ruby - 我如何在 Ruby 中组合 gets.chomp 和 ARGV?

转载 作者:数据小太阳 更新时间:2023-10-29 07:58:48 25 4
gpt4 key购买 nike

<分区>

我刚开始学习 ruby​​,目前坚持在同一个脚本中使用 ARGV 和 gets.chomp。

我希望脚本首先解压缩 3 个参数,然后我会问一个问题 (gets.chomp),然后打印包含 ARGV 和 gets.chomp 变量之一的字符串。在终端中,我将 ARGV 设置为一二三(示例:ruby file1.rb 一二三)。下面的代码示例:

first, second, third = ARGV

puts "Your first variable is: #{first}"
puts "Your second variable is: #{second}"
puts "Your third variable is: #{third}"

这完全符合我的预期。在终端中,它给我一、二和三作为第一、第二和第三个变量。

我添加了一个 puts“What is your favorite colour”并按预期打印出来,但是当我为输入设置 gets.chomp 时,出现错误。

first, second, third = ARGV

puts "Your first variable is: #{first}"
puts "Your second variable is: #{second}"
puts "Your third variable is: #{third}"

puts "What is your favourite colour? "
colour = gets.chomp #this is where the error occurs

puts "So your favourite number is #{first} and you like the colour #{colour}."

^底线是我要打印的内容,但在 gets.chomp 时出现错误

这是终端打印的内容:

$ ruby ex13.rb one two three
Your first variable is: one
Your second variable is: two
Your third variable is: three
What is your favourite colour?
ex13.rb:8:in `gets': No such file or directory - one (Errno::ENOENT)
from ex13.rb:8:in `gets'
from ex13.rb:8:in `<main>'

我希望我已经充分解释了上面的内容,如果需要更多信息,请告诉我。

任何帮助将不胜感激!

谢谢,

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com