Java while loop 🔄

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

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

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

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

    // while loop = executes a block of code as long as a it's condition remains true
    Scanner scanner = new Scanner(System.in);
    String name = "";

    while(name.isBlank()) {
    System.out.print("Enter your name: ");
    name = scanner.nextLine();
    }
    System.out.println("Welcome "+name);

    }
    }

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

      xception in thread "main" java.lang.Error: Unresolved compilation problem:
      The method isBlank() is undefined for the type String
      at Main.main(Main.java:12)

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

      what is means?

    • @Imagebyte
      @Imagebyte 13 วันที่ผ่านมา

      @@ianamihai3233 It's Just because the isBlank() is supported after the JDK Version 11 & out might have older version of it.

  • @pavelkvasnicka6856
    @pavelkvasnicka6856 ปีที่แล้ว +10

    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

  • @AM-di8hv
    @AM-di8hv 2 ปีที่แล้ว +4

    it's the best course I have ever seen!

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

    Great video!!! I'm infinitely grateful for your dedication and big heart to share this knowledge with the world. Thank you soo much 💜💜💜💜

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

    OUR HERO !!(Who knows java)

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

    Thank you for usefull inputs to my Java jorney.

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

    Tysm, you helped me learn java basics

  • @honoredegg
    @honoredegg 2 ปีที่แล้ว +1

    Understood while loop. 12th. Thank you, ma Bro Sensei!

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

    import java.util.Scanner;
    /*Brandon (Insert last name here)
    *March 28, 2021
    *Do While Loops
    */
    public class DoWhileLoops {
    public static void main(String[] args) {
    Scanner scan = new Scanner(System.in);
    String name = "";
    while (name.isBlank()) {
    System.out.println("Enter you name");
    System.out.print("> ");
    name = scan.nextLine();
    }//while name is blank these lines of code will occur
    System.out.println("Hello there " + name + ", welcome!");
    do {
    System.out.println("Enter you name");
    System.out.print("> ");
    name = scan.nextLine();
    } while (name.isBlank());//does these lines of code once always and will repeat it until while statement is false
    System.out.println("Hello there " + name + ", welcome!");
    }//end of main
    }//end of class

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

      Nice another way of looking at the do while or loops Thanks

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

    Nice👍😊😊😊 it was just amazing🤩😍😍

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

    thanks for sharing x

  • @Giovanni-Rhonim
    @Giovanni-Rhonim 10 หลายเดือนก่อน +1

    God Bless you Bro +10

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

    Thank you so much again 💙💙💙💙💙

  • @ibrahimylmaz8378
    @ibrahimylmaz8378 2 ปีที่แล้ว +1

    you are amazing!

  • @emmanueljr
    @emmanueljr 2 ปีที่แล้ว +13

    Thank you , anyone know any real life examples of times where I'd use a do loop ? I'm a bit of a visual learner so if I get an example I'll get a clearer picture of when it makes sense to use a while loop and when to use a do loop

    • @veynem6384
      @veynem6384 10 หลายเดือนก่อน +1

      you could as a user for their age, and lets say you have a condition to where the age has to be from 1 to however old you want the max age to be. Then the user inputs a negative age or an age that is for example 999. You then could print an error message and ask the user to re-enter their age.

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

      Do while loop in real life is like we have to graduate after completing our school and we get admission in any courses without any future plan ( for example :- cs engineering ) and after' completing our graduation course we think we have done our graduation in right stream or not ( first we execute the code (" at least one time ") and after that we checked the condition )
      And while loop like first plan what to do in future then select the particular stream according to your plan ( first check the condition and then execute if condition is true )
      😁

    • @Jashwanth.G
      @Jashwanth.G 3 หลายเดือนก่อน

      ​@@manglooeditz7751help i am struck in a loop😂

  • @govinduharshana3292
    @govinduharshana3292 10 หลายเดือนก่อน +1

    Thanks Bro ❤

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

    Love your videos

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

    Very educational video

  • @cesara9747
    @cesara9747 3 ปีที่แล้ว

    best teacher everrrr

  • @christianvillanueva723
    @christianvillanueva723 3 ปีที่แล้ว

    im glad your channel has grown bro can you also create a tutorial about javascript thank you

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

    This is a like before watching the video.

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

    ty bro

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

    thx 4 vid bro !

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

    Thanks bro

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

    Thanks, Bro 06/01/2024

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

    i copied the same code and it shows me:" cannot find symbol
    symbol: method isBlank()
    location: variable name of type String "
    any help ?

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

      do isEmpty() instead of isBlank()

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

      @@SushiEater44 thanks bro

    • @مجهول-ن5ع7ن
      @مجهول-ن5ع7ن ปีที่แล้ว

      @@SushiEater44 thanks it's works

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

      @@مجهول-ن5ع7ن no need to thank me bro, good luck with your future journey mate

    • @مجهول-ن5ع7ن
      @مجهول-ن5ع7ن ปีที่แล้ว

      @@SushiEater44 🤍

  • @MrLoser-ks2xn
    @MrLoser-ks2xn 2 ปีที่แล้ว

    Thanks

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

    do-while loop 2:53

  • @曾毓哲-b1t
    @曾毓哲-b1t ปีที่แล้ว

    THANK YOU

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

    thanks😁

  • @nerrixj.l.6102
    @nerrixj.l.6102 2 ปีที่แล้ว

    ❤️❤️❤️

  • @lll-fz5ks
    @lll-fz5ks ปีที่แล้ว

    cool😄

  • @YuliannCastañeda
    @YuliannCastañeda หลายเดือนก่อน

    Thanks!

  • @kouzokiodin3623
    @kouzokiodin3623 3 ปีที่แล้ว

    thank u bro

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

    thanks

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

    tybro

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

    Nice!

  • @danny.3036
    @danny.3036 3 ปีที่แล้ว

    Thanks, Bro! ☕

  • @huuloc8719
    @huuloc8719 3 ปีที่แล้ว

    Nice.

  • @varadkodgire2219
    @varadkodgire2219 2 ปีที่แล้ว +1

    hello bro i was running this code but i am getting error at .isBlank as follow :
    Exception in thread "main" java.lang.Error: Unresolved compilation problem:
    The method isBlank() is undefined for the type String
    at peactice.While_loop.main(While_loop.java:13)
    what should i do any one know about it pls tell

    • @johnglenndeleon3113
      @johnglenndeleon3113 2 ปีที่แล้ว +1

      same here what i do is i replace it to name.isEmpty and it works

    • @مجهول-ن5ع7ن
      @مجهول-ن5ع7ن ปีที่แล้ว

      @@johnglenndeleon3113 thanks it's works

  • @matinmonshizadeh
    @matinmonshizadeh 3 ปีที่แล้ว

    thanks bro

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

    Awesome

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

    thanks!

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

    BRO IS A GOD SEND

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

    thx bro

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

    what if I want to do this with an integer? so instead of the name we do it for like age or smth

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

    How do I do that with numbers?

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

    learnt thx

  • @SAEID-n4r
    @SAEID-n4r ปีที่แล้ว

    ❤❤❤

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

    ❤️👌🙌🙌

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

    broooooo what if i want a input as integer value and the user is skipping the input , what should use in that case i tried Integer wrapper class but it doesn't work

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

    i am new bro i want to ask a question why we use scanner becz you can not use it in previous for loop lecture

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

    good

  • @PramukaNavodh-u2s
    @PramukaNavodh-u2s ปีที่แล้ว

    Bro has the matching name for his channel. "BRO"

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

    Nice

  • @sidelymations7617
    @sidelymations7617 3 ปีที่แล้ว

    while(subscirbedToBro(true))
    {
    System.out.println("So bad");
    }
    System.out.println("Welcome to the bros");

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

    Ο βρόχος επανάληψης while και do while.

  • @mzpaige98
    @mzpaige98 3 ปีที่แล้ว

    the best

  • @afshanbarlaskar9327
    @afshanbarlaskar9327 3 ปีที่แล้ว

    awesome

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

    THANK!

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

    Cool

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

    ur cool

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

    Nice vid bro

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

    I didn't understand do while loop clearly. It working same .

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

    👌

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

    I tried this using the JOptionPane
    import javax.swing.JOptionPane;
    public class Main {
    public static void main(String[] args) {
    String name = "";
    while (name.isEmpty()) {
    JOptionPane.showInputDialog("Enter your name");
    }

    JOptionPane.showMessageDialog(null, "Hello " + name);

    }
    }
    but the "Enter your name" dialoge keeps on looping even I entered a name... any help or tricks?

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

      Maybe JOptionPane doesn't work withe While... Idk.

  • @greeneggsandmushrooms9855
    @greeneggsandmushrooms9855 3 ปีที่แล้ว

    do this while you follow along

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

    prayer

  • @alapatibhargav8083
    @alapatibhargav8083 3 ปีที่แล้ว

    👍😇

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

    comment for algorithmm

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

    Thank you Bro

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

    hi

  • @icecryptojt2708
    @icecryptojt2708 3 ปีที่แล้ว

    BROOOOOOOOOOOOO

  • @nico-n3987
    @nico-n3987 3 ปีที่แล้ว +4

    Hi Bro! I'm having a problem with this code, it's not running well on NetBeans 12.4 and it's driving me crazy!! System.out.print inside while loop is printing nothing, it works if I use System.out.println but the issue is that it goes to another line and I want to make it work as you do. PS you're the best!

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

      looking forward

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

      i do have another problem regardless, the .isBlank it does not recognized by the NetBeans version 12.6

    • @Wolfgirl-bi7ie
      @Wolfgirl-bi7ie 2 ปีที่แล้ว

      @@humbertovalle6837 I had the same problem. Using .isEmpty seems to be what most people use on NetBeans

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

    23,400 views and only 59 comments >:(

  • @eclipzki
    @eclipzki 7 วันที่ผ่านมา

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

    Bro is bro

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

    Allah oh akbar

  • @sergiogarcia-di5nj
    @sergiogarcia-di5nj 2 ปีที่แล้ว

    hi bro

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

    good soup

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

    hey bro can you please help me i created a game in java a rock paper scissors one and its continuously executing i want it to execute only five times and it should stop can you please help help how to do it please reply brooooooooooooooooooooooo.

  • @simoelabbassi390
    @simoelabbassi390 3 ปีที่แล้ว

    Bro I need help can U help me is easy for U please replay

  • @AARTIKUMARI-fe8wx
    @AARTIKUMARI-fe8wx ปีที่แล้ว

    vedio -12

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

    dude help me i got infinite loop :(

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

    loooooooooooooooooooooooooooooooooooooooooooooooop

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

    man

  • @patrickpasaje4037
    @patrickpasaje4037 3 ปีที่แล้ว

    "Video 12"

  • @NebyuDaniel-j6b
    @NebyuDaniel-j6b 3 หลายเดือนก่อน

    CRnh

  • @melrovynr.aricayos8534
    @melrovynr.aricayos8534 4 ปีที่แล้ว

    15

  • @quanyufeng579
    @quanyufeng579 3 ปีที่แล้ว

    Keep studying

  • @maciejkaminski8535
    @maciejkaminski8535 3 ปีที่แล้ว

    comment

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

    Comment 12

  • @omersond4891
    @omersond4891 3 ปีที่แล้ว

    i was here

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

    🙂

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

    ty bro

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

    Thanks

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

    nice

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

    ty bro

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

    ty bro