summaryrefslogtreecommitdiff
path: root/avg
blob: ac912d6160c2e51faf39ba9b2ef0aa72847e8740 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env ruby

require 'optimist'

conf = Optimist::options do
  banner "avg < <one number per line>"
  opt :round, "Number of digits after decimal point.", :type => :int, :default => -1, :short => "-r"
  opt :Running, "Running average", :type => :bool, :default => false, :short => "-R"
end

def print_avg sum, i, round
  avg = sum / i.to_f
  if round >= 0
   puts avg.round round
 else
   puts avg
 end
end

sum = 0.0
i = 0
while line = STDIN.gets
  sum += line.to_f
  i +=1
  if conf[:Running]
    print_avg sum, i.to_f, conf[:round]
  end
end

if not conf[:Running]
  print_avg sum, i.to_f, conf[:round]
end