Java Program to Print 1 to 100 Numbers without using Loop

Write a java program to print 1 to 100 numbers without using loop.  This problem is very interesting and tricky for beginners. You have to think how you can print numbers from 1 to 100 without using for and while loop in your code.

We can easily solved this problem using loop (for and while loop).  But suppose you don’t have to use loop to print the numbers.