Q:

Java program to implement infinite loop using do-while loop

belongs to collection: Java Basic Programs

0

Java program to implement infinite loop using do-while loop

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

In this program, we will use the do-while loop to print the "Hello" message infinite times.

Program/Source Code:

The source code to implement an infinite loop using the do-while loop is given below. The given program is compiled and executed successfully.

// Java program to implement infinite loop using 
// the do-while loop

public class Main {
  public static void main(String[] args) {
    do {
      System.out.println("Hello");
    } while (true);
  }
}

Output:

Hello
Hello
Hello
Hello
Hello
.
.
Infinite time

Explanation:

In the above program, we created a public class Main. It contains a static method main().

The main() method is an entry point for the program. Here, we used Boolean value true in loop condition. That's why the do-while loop will never terminate and printed "Hello" message infinite times.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Java program to implement nested loop using for lo... >>
<< Java program to implement infinite loop using whil...