If Statements & Comparisons - Java - Tutorial 16

preview_player
Показать описание

Throughout the course we'll be looking at various topics including variables, arrays, getting user input, loops, conditionals, object orientation, and much more.
Рекомендации по теме
Комментарии
Автор

You should try to upload more videos. Really love your tutorials, just amazing

PeiqiLi-RealLove
Автор

You make every concept clear and easy to understand, amazing Mike, thank you!

sesetienganh
Автор

thank you mike you make everything look easy i am going to go over the course 2 times

phillipjchaka
Автор

Thank you for these videos, and always explaining things in simple terms. I appreciate it so much.

denwinsolomons
Автор

Suggested optimization:
if (num1 >= num2) {
if (num1 >= num3) {
return num1;
} else {
return num3;
}
} else {
if (num2 >= num3) {
return num2;
} else {
return num3;
}
}

This way you always perform 2 comparisons. While, in the non-optimized version, you perform a minimum of 2 and a maximum of 3.

Though the resulting code has many more lines, so it may be less adequate for this kind of tutorials.

EuroUser
Автор

You deserve more views. Hope you'll succeed. Thanks a lot for these awesome tutorials. Awesome teaching skills.

DSeyit
Автор

Can I know your IDE that you are using?

christianvergutierez