public class While { public static void main(String[] args) { int i; i = 0; while ( i < 4 ) { System.out.println("Hello World"); i++; } } }