2021-04-11 00:36:28 +05:30
|
|
|
# A ruby program to add numbers
|
|
|
|
# Addition or sum of numbers means adding each and every element of the inputs
|
|
|
|
# Sum or addition of 1 and 3 is 1 + 3 = 4
|
|
|
|
|
2021-04-14 16:29:37 -07:00
|
|
|
def add(*array)
|
2021-04-11 00:36:28 +05:30
|
|
|
sum = 0
|
2021-09-03 13:24:58 -07:00
|
|
|
array.each { |a| sum += a }
|
2021-04-11 00:36:28 +05:30
|
|
|
puts "The sum of following elements #{array} is #{sum}"
|
2021-09-03 13:24:58 -07:00
|
|
|
rescue StandardError
|
|
|
|
puts 'Error: Please provide number only!'
|
2021-04-11 00:36:28 +05:30
|
|
|
end
|
|
|
|
|
2021-09-03 13:24:58 -07:00
|
|
|
#
|
2021-04-11 00:36:28 +05:30
|
|
|
# Valid inputs
|
2021-09-03 13:24:58 -07:00
|
|
|
#
|
2021-04-11 00:36:28 +05:30
|
|
|
|
2021-04-14 16:40:39 -07:00
|
|
|
puts add(1)
|
|
|
|
# The sum of following elements [1] is 1
|
|
|
|
|
|
|
|
puts add(2, 5, -4)
|
|
|
|
# The sum of following elements [2, 5, -4] is 3
|
|
|
|
|
|
|
|
puts add(25, 45)
|
|
|
|
# The sum of following elements [25, 45] is 70
|
|
|
|
|
2021-09-03 13:24:58 -07:00
|
|
|
#
|
2021-04-11 00:36:28 +05:30
|
|
|
# Invalid inputs
|
2021-09-03 13:24:58 -07:00
|
|
|
#
|
2021-04-14 16:40:39 -07:00
|
|
|
|
2021-09-03 13:24:58 -07:00
|
|
|
puts add('1', 2, 3)
|
2021-04-14 16:40:39 -07:00
|
|
|
# Error: Please provide number only!
|
|
|
|
|
2021-09-03 13:24:58 -07:00
|
|
|
puts add('a', 1)
|
2021-04-14 16:40:39 -07:00
|
|
|
# Error: Please provide number only!
|