Guys, is this the right way of nesting an if else statement in Kotlin coz my code is outputting an error | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Guys, is this the right way of nesting an if else statement in Kotlin coz my code is outputting an error

This is it fun main(args:Array<String>){ var n1=3 var n2=5 var n3=-2 val max=if(n1>n3) if(n1>n3) n1 else n3 }else{ if(n2>n3) n3 else n3 } println ("max=$max") }

29th Aug 2022, 12:13 PM
Ayebazibwe Morris
Ayebazibwe Morris - avatar
1 Answer
+ 4
I don't think you can make it with a declaration of "val max =..." And your second if statement is the same as your first. If(n1>n3) If(n2>n1) n2 Else N1 Else if(n2>n3) N2 Else N3 Is that what you're trying to do?
29th Aug 2022, 1:09 PM
Ausgrindtube
Ausgrindtube - avatar