Course Hive
Search

Welcome

Sign in or create your account

Continue with Google
or
Learn Java while loops in 12 minutes! ♾️
Play lesson

Java tutorial for beginners ☕ - Learn Java while loops in 12 minutes! ♾️

5.0 (4)
40 learners

What you'll learn

This course includes

  • 12 hours of video
  • Certificate of completion
  • Access on mobile and TV

Summary

Keywords

Full Transcript

#java #javatutorial #javacourse 00:00:00 introduction 00:01:40 example 1 00:02:45 infinite loop example 00:03:52 example 2 00:06:40 example 3 00:08:53 do while loop 00:09:53 example 4 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); // EXAMPLE 1 String name = ""; while(name.isEmpty()){ System.out.print("Enter your name: "); name = scanner.nextLine(); } System.out.println("Hello " + name); // EXAMPLE 2 String response = ""; while(!response.equals("Q")){ System.out.print("Press Q to quit: "); response = scanner.next().toUpperCase(); } System.out.println("You have quit"); scanner.close(); } }

Course Hive

Continue this lesson in the app

Install CourseHive on Android or iOS to keep learning while you move.

Related Courses

FAQs

Course Hive
Download CourseHive
Keep learning anywhere