Skip to content

Instantly share code, notes, and snippets.

@BMU-Verlag
Created August 3, 2020 12:07
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 BMU-Verlag/5ebdac484c326d9d4b478d965aeff278 to your computer and use it in GitHub Desktop.
Save BMU-Verlag/5ebdac484c326d9d4b478d965aeff278 to your computer and use it in GitHub Desktop.
fun main() {
var a: Int = 4
if (a == 5)
println("Der Wert der Variable a entspricht 5.")
else if (a > 5){
println("Der Wert der Variable a entspricht nicht 5.")
println("Ihr Wert ist größer.")
}
else{
println("Der Wert der Variable a entspricht nicht 5.")
println("Ihr Wert ist kleiner.")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment