in reply to Ceiling elements of an array!

You can use map to calculate the ceiling of each array element.
my @a = qw/1.3 5.8 9.5/; my @b = map(ceil($_), @a);