summaryrefslogtreecommitdiff
path: root/test/pending/shootout/harmonic.scala-3.scala
blob: dc631fcf124ee042480b5455692ab8467020fbe6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* The Computer Language Shootout
   http://shootout.alioth.debian.org/
   contributed by Isaac Gouy (Scala novice)
*/

object harmonic {
   def main(args: Array[String]) = {
      val n = Integer.parseInt(args(0));
      var partialSum = 0.0;
      var i = 1;

      while (i < n){ partialSum = partialSum + 1.0/i; i = i + 1; }
      Console.printf("{0,number,#.000000000}\n", partialSum);
   }
}