【发布时间】:2014-03-25 10:58:59
【问题描述】:
我可以尝试其他方法或重写我的代码吗?我又试了很多次。 我放弃了。
def Input
puts("What day?")
Date = gets.chomp
puts("What month")
Month = gets.chomp
puts("What year?")
Year = gets.chomp
puts("Input your event?")
Event = gets.chomp
text = file.open("Event.txt")
return[Date, Month, Year, Event]
end
Input
【问题讨论】:
-
这里没有理由使用常量,使用
date、month等即可。