FAQ: Introduction to Ruby - Math

This community-built FAQ covers the “Math” exercise from the lesson “Introduction to Ruby”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Learn Ruby

FAQs on the exercise Math

There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (reply) below.

If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head here.

Looking for motivation to keep learning? Join our wider discussions.

Learn more about how to use this guide.

Found a bug? Report it!

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

it was quite easy

Ok, I’m completely lost on this. I try to add my code onto the script.rb and nothing happens. I click run and nothing. I can’t click next. Am I not doing it right or just don’t know how to use this website?

2 Likes

Try this:

sum = 13 + 379
product = 923 * 15
quotient = 13209 / 17

puts sum
puts product
puts quotient

2 Likes

In the first three lines you are defining the variables.
On the next three lines you are asking for the print of those variables - as the variables are math operations you get the result of the operations.

I hope I have helped.

2 Likes

In my attempt rather than setting up the 3 lines with the variables and the three lines with puts for each of the lines was all incorporated into one as per below.

puts sum = 13 + 379
puts product = 923 * 15
puts quotient = 13209 / 17

Would this be incorrect or could this cause more confusion once you are designing more complicated programs?

Is it standard to leave a blank line after variables?

Thanks