Skip to content

Instantly share code, notes, and snippets.

@rail-rate
Created June 16, 2019 00:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rail-rate/c2a207fb84698f8c4fcddc4b94578263 to your computer and use it in GitHub Desktop.
Save rail-rate/c2a207fb84698f8c4fcddc4b94578263 to your computer and use it in GitHub Desktop.
浮動小数点1
fun main(args: Array<String>) {
val number1 : Double = 1.234
println(number1)
val number2 : Float = 1.234f
println(number2)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment