public class loops_while { public static void main(String[] args) { int num=1; while (num <= 100) { System.out.println(num); num++; } } }