How to accept user input in Java ⌨️【8 minutes】

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ม.ค. 2025

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

  • @simrangill5830
    @simrangill5830 3 ปีที่แล้ว +96

    You are the best teacher ever

  • @davidbolduc4378
    @davidbolduc4378 3 ปีที่แล้ว +29

    This channel is the best thing to happen to my GPA since Chegg

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

    This is incredible bro, can't believe that not a lot of people watch this. That is the way to teach people! Keep it up! Love your videos

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

      Yeah!!!!!!!!!!!!!!!!!!!!!!!

  • @meng-junglee9071
    @meng-junglee9071 3 ปีที่แล้ว +18

    Bro you have no idea how long it took me to wonder why I couldn't enter any input with the nextLine after nextInt. You are awesome!!

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

    That broke down the WHY of scanners for me, rather than "because that's just the way it is." Thank you!

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

    // It's good practice to close your scanner when you are done using it. scanner.close();
    // I forgot to. So I didn't
    import java.util.Scanner;
    public class Main {
    public static void main(String[] args) {

    Scanner scanner = new Scanner(System.in);

    System.out.println("What is your name? ");
    String name = scanner.nextLine();

    System.out.println("How old are you? ");
    int age = scanner.nextInt();
    scanner.nextLine();

    System.out.println("What is your favorite food?");
    String food = scanner.nextLine();

    System.out.println("Hello "+name);
    System.out.println("You are "+age+" years old");
    System.out.println("You like "+food);
    scanner.close();
    }
    }

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

      thanks for giving it in the comments! also mine kept on saying error on the first line.

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

      Umm....I'm having a problem here please
      It says error..system cannot be resolved to a variable

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

    May God bless you, its has been hard since I started college. Now I can Understand better!!!

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

    for strings , when using scanner , its better to use .next(); instead of .nextLine(); to avoid that error , that worked for me at least .
    and i have to say , great video , thanks for the efforts .
    this is by far the most beginner friendly , right to the point , including tricks and errors tutorial.
    i sincerely thank you bro hahahaha

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

      Thank you!!! I took a note of this :)

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

      Next() keyword won't be able to print the whole text, for like name and tittle at the same time

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

      Thanks , it helped a lot

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

      helped me
      thanks

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

      If you use ".next();" instead of ".nextLine();", It will be not possible to type more than one word
      Example:
      Joker - works fine
      Joker pro - error

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

    Hey Bro! I am from India and only your tutorials helped me learn programming even my main language didn't help, Thanks a lot, I am a kid btw

  • @Elvin-ne6qq
    @Elvin-ne6qq ปีที่แล้ว +2

    I just discovered your channel, your way of explaining things without too much fuss and in an easy way is amazing, greetings from Honduras and thanks a lot👻.

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

    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

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

    if this guy isn't the best teacher in the world idk who is
    LOVE YOU BRO

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

    Just started this course...super excited to finish it ❤😊

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

    Using this series alongside with my uni course , love u bro 👊

  • @TewodrosGetnet-ut6km
    @TewodrosGetnet-ut6km หลายเดือนก่อน

    Bro you use 1% of your knowledge and 99% of your talent to lecture. In one or other way you are the bestest one

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

    This tutorial is fantastic! The explanations are clear and concise, making it easy to follow along. I've been struggling with understanding [specific programming concept], but your examples really helped clarify things. Thank you for breaking down complex topics into manageable steps. Looking forward to more videos like this!

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

    I like how you tackled the newline character stuck in the buffer integrated concept (I would still call it an error). I was taught that the buffer needed to be cleared, and I still do not know how to visualize a buffer.

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

    eyyy new bro here, I had been dealing with a lot of difficulties on understanding Java and thanks to you it gave me a on point lesson to different difficulties. Keep it up bro I know that you can help more beginner like me.

  • @joe-o6z1g
    @joe-o6z1g ปีที่แล้ว

    For the first time my code executes without error!! # Thank you so much sir, I love your pattern of writing codes so simple ...

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

    I hope you will get more than 1M views each time you uploaded a new video after one day, in the future.

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

    You are the best programming channel!

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

    Your explanations and examples is very clean and easy to learn. Thank you so much for your effort

  • @PaulLein-t9m
    @PaulLein-t9m ปีที่แล้ว

    Great explanation of the mysterious behavior of the Scanner class.

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

    The shia Labeouf "Just do it" icon made me subscribe. Thanks bro

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

    You made it so simple & super easy to understand. Thank you

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

    Great tutorial. I like seeing how much java differs from python, which is the tutorial language I learned in school.

  • @DANNZIU-kv2sc
    @DANNZIU-kv2sc 5 หลายเดือนก่อน

    Dude your tutorials are the best

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

    Finally, get this tutorial that explained this error clearly

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

    Αυτό είναι ένα σχόλιο για το συγκεκριμένο βίντεο. Τι αλγόριθμος και πράσινα άλογα... Αφού ήρθαν οι Έλληνες μη φοβάσαι Bro, η επιτυχία είναι δεδομένη.

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

    Bro really you made it so easy for me
    Thanks a lot for that bro
    Whenever I get stuck I come to your channel and as always I return with a great happy feeling and also with understanding the concept
    ❤❤❤❤❤❤❤❤❤❤❤❤❤❤

  • @UnknownPerson-t7p
    @UnknownPerson-t7p 10 หลายเดือนก่อน

    Man! You saved my java project! Thank you!

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

    this is a comprehensive explanation

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

    Thanks, Bro!! /n explanation was what I was looking for throughout the youtube

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

    best java course!

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

    Thank you so much for this playlist! I'm currently reviewing for our Algorithms class, bro and I totally forgot about it all 😭😭😭

  • @Anees-qf8so
    @Anees-qf8so ปีที่แล้ว

    you are a true gigaChad programmer bro!!!

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

    Bro is the realest of all bros

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

    You are a life saver THANK YOU

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

    your videos ara just incredible

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

    Love your style bro!

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

    Thank you for giving us such a great learning material !:)

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

    Excellent Bro ♥️ , You've earned a couple of subscribers!

  • @ilgar.mp4
    @ilgar.mp4 ปีที่แล้ว +15

    Short ☑️
    Useful ☑️
    Practical ☑️
    Life Changing ☑️

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

    this is what i did on my own after watching
    import java.util.Scanner;
    public class Main {

    public static void main(String[] args) {

    Scanner x = new Scanner(System.in);

    System.out.println("Whats your name?");
    String name = x.nextLine();
    System.out.println("Whats your age?");
    int agr = x.nextInt();
    x.nextLine();
    System.out.println("Whats your favourite food");
    String food = x.nextLine();


    System.out.println("Hello "+ name);
    System.out.println("You are " + agr + " yrs old");
    System.out.println("Your favourite food is "+ food);
    }
    }
    its a little confusing since its not as user friendly as pyton and java but your videos help quite a bit.

  • @-omarabusnineh5174
    @-omarabusnineh5174 3 ปีที่แล้ว +3

    I'm from Jordan, thank's u Bro code u'r professional

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

    Jesus, you are the best man! I discover your channel today!

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

    This is epiccccccccccccccccccccccc loving this.............

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

    Bro is always here for me.
    Thank you Bro ❤️❤️❤️

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

    a perfect reviewr ty my dude

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

    Nice and smoothly explained

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

    Very important video of Java for input data by user with keyboard.

  • @CodingwithVahdat2025
    @CodingwithVahdat2025 5 หลายเดือนก่อน +1

    wow brother wow very good realy

  • @kingtyphoon
    @kingtyphoon 27 วันที่ผ่านมา

    Very awesome video!

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

    Thank you for the great video! Keep up the good work!

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

    You are simply great, Bro!

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

    You are the best bro !!

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

    Great tutorial bro

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

    Look at the thumbnail though!!😂😂😂😂

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

    Excuse me, Mr. Bro. Great tutorials you have here, but could you please make more videos about using pygame? I think it would be fun for people who have mastered Python or at least have an intermediate knowledge of the language. Thank you.

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

    Super as usually!!

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

    Great tutirial ever !!!!!

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

    good explanation bro

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

    Da best bro in Da entire world

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

    your videos are so useful, thank you

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

    It was helpful thanks❤

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

    You are amazing bro. Thank you so much

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

    Great tutorial! Thanks!

  • @KeroShenouda-z4z
    @KeroShenouda-z4z 7 วันที่ผ่านมา

    that was helpful thank you :)

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

    I just love your voice, @Bro Code !!

  • @ap1136-c4m
    @ap1136-c4m 10 หลายเดือนก่อน

    found it very helpful

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

    Thanks Bro for a great lesson!

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

    thank for teaching. I learnt from you

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

    thanks for this tutorial bro

  • @reynanlamsen2007
    @reynanlamsen2007 5 หลายเดือนก่อน +6

    I miss C so much 😭

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

    Very easy to understand. Thank you :)

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

    Great video , thanks for the efforts !!!

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

    good lesson, bro

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

    incredible video, thank you bro

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

    this easy learn thanks of course !!!

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

    import java.util.Scanner;
    public class Main{
    public static void main{
    System.out.println("What is your name");
    Scanner x=new Scanner(System.in);
    String name=x.nextLine();
    System.out.println("Your name is: "+name);
    }
    }

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

    Another lesson that i understood

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

    Thanks Giga Bro🔥

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

    great video bro!!

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

    you are amazing!

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

    Nice Work

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

    Thanks. good class

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

    Great Video, Bro!

  • @dr.oswald5400
    @dr.oswald5400 3 ปีที่แล้ว

    Thanks for the help on java, I was using a school computer so I couldn't like or comment. I'm doing that now.

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

    Scanner scanner = new Scanner(System.in); -> you could have explained why System.in is passed here. Anyway your tutorials are awesome

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

    Thx for video bro !

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

    Sometimes it does not work or maybe i just missing something in my code after i implement the nextLine() method to eat some extra white space; but yeah its very helpful, Thanks bro

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

    Hey Bro,I have a question from my school I have an image where can I send the image?Please clarify my doubt of menu based programs🙏

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

    bro, i watched ur java tutorial (10, 4 hours) and all i learnt its "its ur bro...ladies and gentlemans" ha ha , jk i liked ur video... and Corvette

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

    Thanks❤ for it bro

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

    Fellow bro ❤️

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

    Thank you very much

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

    a lot of prayers to the algorithm!

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

    you deserved M views for every video

  • @electroplayer.
    @electroplayer. ปีที่แล้ว

    Thanks bro😊

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

    Thank You ❣