Skip to content

PRO TIP Block youtube.com at the DNS level — Pi-hole, NextDNS or your hosts file — but allow youtube-nocookie.com and i.ytimg.com. These tutorials keep playing; the rabbit hole does not.

Learning without distractions

Learn Java while loops in 12 minutes! ♾️

67.7K views on YouTube

#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();
}
}