Nested if-else Statements in Java

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ธ.ค. 2024

ความคิดเห็น • 25

  • @23wintermute
    @23wintermute 9 หลายเดือนก่อน +8

    STUDENTS BEWARE: This assessment of the code is incorrect. Java ignores whitespace, so there is no nesting here, it's simply a regular IF/ELSE IF/IF statement. This is a great example of why best practice is to use brackets with your conditional statements. It's also a good example of why certain languages use "elif" instead of "else if" - Python does this, for example. In your case, the logic would work the same even if you added brackets after the first else, but this is not always the case. I'd give you an example, but this is meant as a short comment.

    • @chiyaminecraft
      @chiyaminecraft 3 หลายเดือนก่อน

      pls gimme a example

  • @IDENTIDADVISUAL2012
    @IDENTIDADVISUAL2012 3 ปีที่แล้ว +2

    Thanks so much, man! I only watched the first 44 secs to get what I'm looking for. Appreciate it!

  • @QueenChisomoSosola-zk9yh
    @QueenChisomoSosola-zk9yh 7 หลายเดือนก่อน +1

    Am here in 2024, thank you for making my java journey abit easier 😊

    • @Kamal17824
      @Kamal17824 หลายเดือนก่อน

      how's your java journey going so far?

  • @rajeevverma7435
    @rajeevverma7435 4 ปีที่แล้ว

    Thanks a lot from India

  • @Cobitremolo
    @Cobitremolo 2 ปีที่แล้ว

    Thanks for sharing. Very explanatory.

  • @shivangi2174
    @shivangi2174 4 ปีที่แล้ว +4

    Awesome video Sir

  • @mahmmadhusen6794
    @mahmmadhusen6794 4 ปีที่แล้ว +1

    Exillient method of teaching..

  • @kalyankumar8629
    @kalyankumar8629 2 ปีที่แล้ว

    good explanation man

  • @admajid2905
    @admajid2905 4 ปีที่แล้ว

    Sir g opp kb kerwayn gy

  • @codewithswiftlanguage
    @codewithswiftlanguage 2 ปีที่แล้ว

    Thanks neso academy

  • @acercomputer6714
    @acercomputer6714 4 ปีที่แล้ว

    thank you sir

  • @jradlr
    @jradlr ปีที่แล้ว

    done

  • @venkataswamykadiyam977
    @venkataswamykadiyam977 4 ปีที่แล้ว

    If I want total all videos of java what can I do sir???How can I get all videos????

    • @ArenDeager
      @ArenDeager 3 ปีที่แล้ว +2

      Tel laga aur ulta let jaa

    • @prakhardhyani7111
      @prakhardhyani7111 3 ปีที่แล้ว +1

      @@ArenDeager tune bhi yhi kia tha 😂😂😂

    • @Thorsssssss
      @Thorsssssss 2 ปีที่แล้ว

      @@ArenDeager tu ja jake anime dekh. Vo hi kr skta h

  • @ArenDeager
    @ArenDeager 3 ปีที่แล้ว +1

    When you say it saves time does it mean the time for compilation? 🤨

  • @mhamadayoubi4132
    @mhamadayoubi4132 ปีที่แล้ว

    i can already tell your Lebanese from the accent, but thanks a lot mate.

  • @jinxscript
    @jinxscript 2 ปีที่แล้ว

    they like using simple stuff

  • @trummler4100
    @trummler4100 2 หลายเดือนก่อน

    Shikanoko Nokonoko greaterThanTen

  • @lokeshhs4286
    @lokeshhs4286 ปีที่แล้ว

    import java.util.Scanner;
    public class codechef{
    public static void main(String args[]){
    Scanner oii = new Scanner(System.in);
    int n = oii.nextInt();
    if(n>10){
    System.out.println("n is greater than 10");
    }
    else if(n==10){
    System.out.println("n is equal to 10");
    }
    else{
    System.out.println("n is less than 10");
    }
    }
    }