// while3 // echoing of values public class while3 { public static void main(String[] args) { int count = 1; while(count <= 5) { System.out.println("Count: "+count); count = count + 1; } } } /* Output: Count: 1 Count: 2 Count: 3 Count: 4 Count: 5 */