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.
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.
Output:
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.