Created
February 6, 2015 12:53
-
-
Save wende/dc54802da9cc88613e37 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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