Showing posts with label print infinite stars. Show all posts
Showing posts with label print infinite stars. Show all posts

Wednesday, 19 July 2017

To print infinite stars using for loop


public class InfiniteStars {
public static void main(String[] args) {
    for(;;)
{
   
        System.out.println("*");
     }
}
}