Subtractions in Ruby - Printable Version +- QP School (https://qomplainerzschool.lima-city.de) +-- Forum: Tutorials (https://qomplainerzschool.lima-city.de/forumdisplay.php?fid=3) +--- Forum: Ruby 3 Tutorials, exercises and examples (https://qomplainerzschool.lima-city.de/forumdisplay.php?fid=17) +--- Thread: Subtractions in Ruby (/showthread.php?tid=3308) |
Subtractions in Ruby - Qomplainerz - 03-08-2021 The easiest way to do subtractions in Ruby is done by passing the values as follows: Quote:puts 3 - 2 The output on the screen will be 1. Another way is storing the values in variables and then subtracting one variable from the other as follows: Quote:num1 = 3 The output on the screen will be 1, too. In case we don't already know the values that should be subtracted we can ask the user to give us the numbers, store the user inputs in variables and then subtract one variable from another as follows: Quote:puts "Please enter a number here: " Now the output will depend on the user input. Assumed the user typed 3 first and 2 later the result will be 1 as well. |