All Downloads are FREE. Search and download functionalities are using the official Maven repository.

spark.examples.LocalPi.scala Maven / Gradle / Ivy

package spark.examples

import scala.math.random
import spark._
import SparkContext._

object LocalPi {
  def main(args: Array[String]) {
    var count = 0
    for (i <- 1 to 100000) {
      val x = random * 2 - 1
      val y = random * 2 - 1
      if (x*x + y*y < 1) count += 1
    }
    println("Pi is roughly " + 4 * count / 100000.0)
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy