Skip to content

Instantly share code, notes, and snippets.

@wende
Created February 6, 2015 12:53
Show Gist options
  • Save wende/dc54802da9cc88613e37 to your computer and use it in GitHub Desktop.
Save wende/dc54802da9cc88613e37 to your computer and use it in GitHub Desktop.
val x = 10
val k = 2
val iloscKul = 3
var suma = 0.0
var mnożnik = 1000
do {
suma = k*mnożnik * (1- Math.pow(2,iloscKul)) / (-1)
mnożnik/=2
} while(suma > x*1000)
println(suma)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment