0
定義名爲first_longer_than_second
的方法,其參數爲first
,另一個稱爲second
。如果傳入的first
字大於或等於second
字的長度,則該方法將返回true
。否則返回false。以下是如何將被調用的方法和預期收益:將兩個字符串的長度與Ruby進行比較
這是我有:
def first_longer_than_second(first, second)
if first.length >= second.length
puts true
else
puts false
end
end
我得到錯誤,我不知道爲什麼。
請問你能發表什麼錯誤? – bork
請正確格式化您的代碼 - https://meta.stackexchange.com/questions/18614/style-guide-for-questions-and-answers – skwidbreth
在黑暗中拍攝時不知道您的錯誤是什麼,但'puts'會打印然後返回'nil',這不像你的方法應該做的那樣。 – jmschles