I am new in Ruby. I need to read from user input (n) numbers and in C++ i used this code
for(i=0;i<N;i++)
{
scanf("%d",&array[i]);
}
this code read exactly (n) numbers separated by any white spaces (tabs, spaces, newlines).
How i can do this in ruby?
in Ruby I tried to do it like this
require 'scanf'
n = scanf("%d");
arr = Array.new()
n.times { arr << scanf("%d") }
but this code don't work when i intut string like this:
1 4 8
but works fine if i input this
1
4
8