summaryrefslogtreecommitdiff
path: root/round
blob: 55919d766362b56203757b8357500a354691938a (plain)
1
2
3
4
5
6
#!/usr/bin/env ruby

r = ARGV[0].to_i
while line = STDIN.gets
  puts line.to_f.round r
end