4 lines
204 B
Ruby
4 lines
204 B
Ruby
# Other ways to find the multiplicative inverse:
|
|
puts 1.quo a # always works
|
|
puts 1.0 / a # works, but forces floating-point math
|
|
puts 1 / a # might truncate to integer
|