programs of java
examples of java programs,these programs are very useful to Beginners,and students to learn java
Showing posts with label
infinite stars
.
Show all posts
Showing posts with label
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("*");
}
}
}
Older Posts
Home
Subscribe to:
Posts (Atom)