gist: 14130 Download_button fork
public
Public Clone URL: git://gist.github.com/14130.git
soma.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
=begin
enunciado: Dado dois números de entrada, exibir sua soma.
=end
 
# ENTRADA
x = ARGV.first.to_i
y = ARGV.last.to_i
 
# LÓGICA
soma = x + y
 
# SAÍDA
puts "#{x} + #{y} = #{soma}"

Owner

neves

Revisions