Ruby output error | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Ruby output error

I am attempting to create a loop that takes in 2 integers from user, & results in a string answer depending on conditions. I am not sure where i am going wrong. I don't understand get.chomp very well either. My code works if i manually input the integers, but i need user input. What am I missing? https://code.sololearn.com/c1ynz5v2T7X5/?ref=app

16th Jun 2022, 1:28 PM
Emily Wood
Emily Wood - avatar
2 Answers
+ 2
Can you maybe put some comments in your code as to what you're expecting from each piece of logic and your reason behind using them? That can help us question our own logic when we are writing out what we want in plain English.
16th Jun 2022, 2:25 PM
Justice
Justice - avatar
+ 2
Your function doesn't need arguments. Replace line 1 def popsicle_ques(s, p) with def popsicle_ques() and line 12 puts popsicle_ques(gets.chomp.to_i) with puts popsicle_ques()
17th Jun 2022, 3:39 PM
Simon Sauter
Simon Sauter - avatar