Skip to content

Instantly share code, notes, and snippets.

@jailsonsf
Created March 29, 2023 02:46
Show Gist options
  • Save jailsonsf/69b59e416decffb164810c48342d1422 to your computer and use it in GitHub Desktop.
Save jailsonsf/69b59e416decffb164810c48342d1422 to your computer and use it in GitHub Desktop.
numbers = []
puts 'Digite 3 números:'
3.times do
num = gets.chomp.to_i
numbers.append(num)
end
numbers.each do |num|
puts num**3
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment