Java if statements 🚧【6 minutes】

Поділитися
Вставка
  • Опубліковано 4 січ 2025

КОМЕНТАРІ • 195

  • @BroCodez
    @BroCodez  4 роки тому +145

    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!");
    }

    }
    }

  • @trodg
    @trodg 2 роки тому +62

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

    • @TheDuckter
      @TheDuckter 11 місяців тому +3

      how 💀
      but yeah i agree

    • @shift-g3l
      @shift-g3l 5 місяців тому +3

      whuh

    • @codedawg05
      @codedawg05 5 місяців тому +3

      how is that possible?💀

  • @tankgirlsc
    @tankgirlsc Рік тому +35

    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!

    • @mr.phewphew4971
      @mr.phewphew4971 11 місяців тому

      Oh my god you are wasting money on that proof

  • @rohitbharatbhandwalkar8583
    @rohitbharatbhandwalkar8583 2 роки тому +12

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

  • @pavelkvasnicka6856
    @pavelkvasnicka6856 Рік тому +5

    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

  • @marioshusband3700
    @marioshusband3700 4 роки тому +33

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

    • @BroCodez
      @BroCodez  4 роки тому +10

      haha it's a remake tho

    • @3lbalk
      @3lbalk 3 роки тому

      @@BroCodez what is the illegal character 200f or something like that

  • @CrStylrZ
    @CrStylrZ 6 місяців тому

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

  • @davidbolduc4378
    @davidbolduc4378 3 роки тому +126

    I wish Bro Code was my professor

  • @antwoinesmith4650
    @antwoinesmith4650 Рік тому +5

    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.

  • @Curious_Clover
    @Curious_Clover 10 місяців тому

    "Ok Boomer!"
    I was caught off guard there buddy. I almost laughed in the middle of the night.

  • @JuliHoffman
    @JuliHoffman 2 роки тому +5

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

  • @raghidhammoud
    @raghidhammoud Рік тому

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

  • @josephthecreator
    @josephthecreator 2 роки тому +5

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

  • @reginaldthaddeuscadiao3488
    @reginaldthaddeuscadiao3488 2 місяці тому

    This will help me for my mid term exams later :)

  • @ganyu5768
    @ganyu5768 6 місяців тому

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

  • @LoBroune
    @LoBroune 9 місяців тому

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

  • @honoredegg
    @honoredegg 2 роки тому

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

  • @MACVXACE
    @MACVXACE Рік тому

    KAKASHI AFTER RETIREMENT AS HOKAGE 🚶🏻🧙 LOL BRO KEEP IT UP .

  • @alexanderperez3974
    @alexanderperez3974 3 місяці тому

    Best channel ever!

  • @ghoggaliabdou4222
    @ghoggaliabdou4222 4 роки тому +1

    Thank you brother for all of your work.

  • @melissaruth1000
    @melissaruth1000 11 місяців тому

    your videos are so so good. thanks for your help

  • @kingtyphoon
    @kingtyphoon 27 днів тому

    Informative video!

  • @danny.3036
    @danny.3036 3 роки тому +1

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

  • @alandrewcarillo9498
    @alandrewcarillo9498 Рік тому

    Smashed subscribed button Bro!! liked your way of teaching and accent. :)

  • @medapatinityasrisantoshred2894
    @medapatinityasrisantoshred2894 3 роки тому

    bros for life and thanks for the playlist

  • @technicalresi5451
    @technicalresi5451 11 місяців тому

    Thank you so much bro very nice 😊❤

  • @CodingwithVahdat2025
    @CodingwithVahdat2025 5 місяців тому

    Thank you brother thank you if you need money allah give U A Billuner .!!!

  • @amalalmuarik5160
    @amalalmuarik5160 3 роки тому

    in 3:13 why it didn't print the bode of if and the body of else if is it because of the curly braces ?

  • @HexaBinary-i5
    @HexaBinary-i5 3 місяці тому

    Your voice sounds exactly like Technoblade! : )

  • @mariasosa8677
    @mariasosa8677 Рік тому

    Thank you!!! now it makes sense.

  • @ljaykhan520
    @ljaykhan520 11 місяців тому

    Great tutorial bro

  • @sairos4057
    @sairos4057 2 роки тому +9

    Scanner method:
    import java.util.Scanner;
    public class Main{
    public static void main(String[] args) {

    Scanner scannerr = new Scanner(System.in);

    System.out.print("What's your age?");
    int age = scannerr.nextInt();

    if (age >= 70) {
    System.out.println("You're an elder! It would be cool if you choose not to drive");

    } else if (age >= 18){
    System.out.println("You can drive little boy");

    } else {
    System.out.println("You can't drive until you reach the reach the age 18 y/o");

    }

    // ~~~~scanner end~~~~
    scannerr.close();
    }
    }

    • @Carlo775
      @Carlo775 Рік тому +1

      Thank you so much bro I love you, if i could kiss you right now i would.

    • @h232_a66
      @h232_a66 Рік тому

      Thanks! I was Struggling how to take number from user!

  • @Garrison86
    @Garrison86 3 роки тому +1

    Amazing! Thanks Bro

  • @xdaycaredropoutx
    @xdaycaredropoutx 4 роки тому +1

    I noticed you deleted the char and string topic in the playlist?

  • @muhammadmushfiqurrahman1653
    @muhammadmushfiqurrahman1653 3 роки тому

    Thanks for your tutorial.

  • @ewawojciech-bu3be
    @ewawojciech-bu3be 8 місяців тому

    Thank you for this !

  • @yiftachsasson3536
    @yiftachsasson3536 2 місяці тому

    thanks bro helped a lot

  • @FFax.annime
    @FFax.annime 4 місяці тому

    @BroCodez is it wrong to write
    The value before the variable in the if statement for example
    If( 20>iage)

  • @justsomeordinarykid923
    @justsomeordinarykid923 3 роки тому +1

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

  • @laduckly8917
    @laduckly8917 Рік тому +3

    I made a coin flip
    code:
    import java.util.Random;
    public class Main {
    public static void main(String[] args) {
    Random random = new Random();
    int x = random.nextInt(2)+1;
    if(x==1){
    System.out.println("Heads");
    }
    else {
    System.out.println("Tails");
    }
    }
    }

  • @MRTOP-nu8dn
    @MRTOP-nu8dn Рік тому

    thx you helped so muchh😀

  • @sairos4057
    @sairos4057 2 роки тому +2

    GUI method:
    import javax.swing.JOptionPane;
    public class Main{
    public static void main(String[] args) {

    int age = Integer.parseInt(JOptionPane.showInputDialog("What's your age?"));

    if (age >= 18) {
    JOptionPane.showMessageDialog(null, "You can drive!");
    } else {
    JOptionPane.showMessageDialog(null, "You can't drive!");
    }
    }

    }

  • @ghoggaliabdou4222
    @ghoggaliabdou4222 4 роки тому

    Thank you again 💙💙

  • @jayanthbonugu6679
    @jayanthbonugu6679 Рік тому

    Great video

  • @JerseyzFinest201
    @JerseyzFinest201 8 місяців тому

    Professor Bro Code to the rescue

  • @CyberEscuela
    @CyberEscuela 4 місяці тому

    Awesome Sauce!

  • @cesara9747
    @cesara9747 3 роки тому

    amazing job, bro!

  • @kimdeguzman7510
    @kimdeguzman7510 2 роки тому

    i cant seem to run it, the last "}" says "Syntax error , insert "}" to complete Classbody"

  • @AmberShah786
    @AmberShah786 2 роки тому

    Thank you👍

  • @gurey4013
    @gurey4013 Рік тому

    Hello! What website/app are you using for coding?

  • @MikaCole-2008
    @MikaCole-2008 Місяць тому

    As an eclipse user, how is your screen black? is it dark mode?

  • @spadeace981
    @spadeace981 Рік тому

    for me the code dosnt work, it just repeat the number i input and dosnt even ask me the question
    Syntax Error: invalid syntax
    file "" line 1
    ^
    how do i fix this?

  • @MaricarManiti-x2b
    @MaricarManiti-x2b Рік тому

    Is it possible to join both if statement and switch case?

  • @DixeyDo
    @DixeyDo 3 місяці тому

    Thank you!

  • @carljohnson779
    @carljohnson779 2 роки тому +1

    why is it saying "C:\Users\ok\OneDrive\Documents\main.java:1: error: class Main is public, should be declared in a file named Main.java
    public class Main {
    ^
    1 error
    Tool completed with exit code 1"

  • @sumiyaakter2041
    @sumiyaakter2041 3 роки тому

    I like your video

  • @ibrahimylmaz8378
    @ibrahimylmaz8378 2 роки тому

    you are amazing!

  • @phiphongnguyen3352
    @phiphongnguyen3352 3 роки тому

    thank bro very much

  • @javierpesaresi311
    @javierpesaresi311 Рік тому

    Like your didactics

  • @williamdrum9899
    @williamdrum9899 Рік тому

    Programmer: "int age;"
    Me, a intergalactic eldritch monstrosity who just turned 2,147,483,648 years old: 😢

  • @StandProudYouAreStrong
    @StandProudYouAreStrong Рік тому

    I love u bro

  • @bekturasanbekov1979
    @bekturasanbekov1979 Рік тому

    thx 4 vid bro

  • @Minecarthus
    @Minecarthus 3 роки тому

    Good video !!!!

  • @shantanukulkarni2413
    @shantanukulkarni2413 6 місяців тому

    Love you bro!

  • @salahadinshemsu6186
    @salahadinshemsu6186 2 роки тому

    Thanks bro

  • @Giovanni-Rhonim
    @Giovanni-Rhonim 11 місяців тому

    God Bless you Bro + 6

  • @beom8285
    @beom8285 Рік тому

    The best!!

  • @camdenburns7181
    @camdenburns7181 Рік тому

    what if you have multiple if statements

  • @mambojambo4717
    @mambojambo4717 7 місяців тому

    Thank you Chad

  • @刌
    @刌 Рік тому

    One question: If your age is 19, You are a teenager or an adult?

  • @wallstreetbets7741
    @wallstreetbets7741 2 роки тому +1

    thx! learnt

  • @rufatalizada4006
    @rufatalizada4006 3 роки тому

    Thanks bro!

  • @samaviation6399
    @samaviation6399 3 роки тому

    thank you bro

  • @MrLoser-ks2xn
    @MrLoser-ks2xn 2 роки тому

    Thanks

  • @itlogskina
    @itlogskina 4 роки тому

    Thank you

  • @robertdraxel7175
    @robertdraxel7175 3 роки тому

    dropping a comment for the youtube algorhitm

  • @nikitassouvatzis1928
    @nikitassouvatzis1928 2 роки тому

    Ακόμα ένα καλό video για τη γλώσσα Java.

  • @azamato
    @azamato 2 роки тому

    Nice bro!

  • @mag823
    @mag823 4 роки тому

    Thank you bro)

  • @PhilipNoel-j2p
    @PhilipNoel-j2p 3 місяці тому

    thanks!!

  • @arielkarat4338
    @arielkarat4338 2 роки тому

    great video brother

  • @eddyfromduolingo3587
    @eddyfromduolingo3587 Рік тому +1

    what a chad🗿

  • @JustineRamirez-i9w
    @JustineRamirez-i9w Рік тому

    amazing

  • @tamirrozenfeld3572
    @tamirrozenfeld3572 2 роки тому

    Thank!

  • @alialhussain4139
    @alialhussain4139 7 місяців тому

    Thanks Bro, 05/31/2024

  • @sairos4057
    @sairos4057 2 роки тому

    TY BRO

  • @waldeirmachado7127
    @waldeirmachado7127 2 місяці тому

    tks bro

  • @stefan5450
    @stefan5450 3 роки тому

    I f I watch this video, I will learn how to deal with if. If not, than not. :)

  • @williamtowne2079
    @williamtowne2079 2 роки тому

    thanks

  • @pranayborode
    @pranayborode 3 роки тому +2

    import java.util.Scanner;
    public class main {
    public static void main(String[] args) {

    int age;

    Scanner scanner = new Scanner(System.in);

    System.out.println("Enter your age :");
    age= scanner.nextInt();

    if(age>=18) {
    System.out.println("You are an adult!");
    }
    else {
    System.out.println("You are not an adult1");
    }

    }
    }

    • @sairos4057
      @sairos4057 2 роки тому

      Don't forge to close the Scanner, bro.
      scanner.close(); or Scanner.close(); I don't remember lol

  • @Gogito503
    @Gogito503 4 місяці тому

    Nice

  • @Unknown-z2b8n
    @Unknown-z2b8n 3 дні тому

    okay bro

  • @Mustaux
    @Mustaux 3 роки тому

    nice bro

  • @dalv8749
    @dalv8749 Рік тому

    ty bro

  • @dogowo
    @dogowo 2 роки тому

    your jokes are funny

  • @oratilwe4462
    @oratilwe4462 5 місяців тому

    ❤❤❤❤❤

  • @thefabffgamer3245
    @thefabffgamer3245 7 місяців тому

    hey bro!

  • @jarza4
    @jarza4 2 роки тому

    yessa

  • @SAEID-n4r
    @SAEID-n4r Рік тому

    ❤❤❤

  • @huuloc8719
    @huuloc8719 3 роки тому

    Nice.