✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Mi lesz a c változó tartalma a println(c) kiíratás során?
var c: Int =0
val a: Int =1
val b: Int =2
if(a > b)
c = a
else
c = b
println(c)