Skip to content

Instantly share code, notes, and snippets.

@tomcha
Created November 22, 2018 02:11
Show Gist options
  • Save tomcha/8d08f027697b4055657e7ec47d0088a6 to your computer and use it in GitHub Desktop.
Save tomcha/8d08f027697b4055657e7ec47d0088a6 to your computer and use it in GitHub Desktop.
Swiftでの小数計算
import Foundation
var i : Int = 0
var f : Float = 0.0
for _ in (1...10) {
f += 0.1
i += 1
}
print(f)
print (i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment