Java if statements 🚧【6 minutes】

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

#Java #if #statements
Рекомендации по теме
Комментарии
Автор

public class Main {

public static void main(String[] args) {

// if statement = performs a block of code if it's condition evaluates to be true

int age = 75;

if(age==75) {
System.out.println("Ok Boomer!");
}
else if(age>=18) {
System.out.println("You are an adult!");
}
else if(age>=13) {
System.out.println("You are a teenager!");
}
else {
System.out.println("You are not an adult!");
}

}
}

BroCodez
Автор

You have explained things so much better than my coding instructor! There has never been an explanation as to "why" such operations are used, and how they can be used incorrectly, take for example the one equal sign as an assigned vs the two equal signs to compare. Now I know why my code spat out a bunch of errors. You just got yourself a subscriber sir!

tankgirlsc
Автор

my prof struggled to explain this to us today and you did it in 6 minutes in such a clear way

trodg
Автор

I can't wait to get to the more complicated stuff and witness how Bro Code makes it a cake walk

rohitbharatbhandwalkar
Автор

We learned if and else if statements in my Java Bootcamp, but this explained them much better. Thanks!

JuliHoffman
Автор

Your explanations are so good, thanks. I'm new to coding and when I need a quick refresher on something I know where to come to.

antwoinesmith
Автор

This is the best Java tutorial for beginners, so you can learn Java and English in one hit. Please keep going! I vote for Java advance tutorial. Thanks a lot Bro

pavelkvasnicka
Автор

This video gave me the missing piece to complete my assignment, thanks Bro! 💯

josephthecreator
Автор

finally, after all these episodes, you make an if statement tutorial

marioshusband
Автор

I have a class test in exactly 20 minutes. And bro actually saved my life. Thank you i owe my life to you

CrStylrZ
Автор

Thank you brother for all of your work.

ghoggaliabdou
Автор

bro is too good he explained the whole thing in 6 min

raghidhammoud
Автор

all your videos are really great Brev. really cool :0 it helps me to learn java again with interest.

ganyu
Автор

"Ok Boomer!"

I was caught off guard there buddy. I almost laughed in the middle of the night.

Curious_Clover
Автор

your videos are so so good. thanks for your help

melissaruth
Автор

You are real bro, thanks for the helpful video again ;)

danny.
Автор

How come I havent seen you before. Thanks a lot man! you help me greatly.!

LoBroune
Автор

So, else statement. I've done with Scanner, learned from you. 9th. Thank you, ma Bro Sensei!

honoredegg
Автор

bros for life and thanks for the playlist

medapatinityasrisantoshred
Автор

Coming from knowing java script I now know they both have java in the name. Even for loops work the same.

justsomeordinarykid