Showing posts with label while statement. Show all posts
Showing posts with label while statement. Show all posts

Monday, August 2, 2010

Sample Program of while Loop

this program is using while statement to print 5 hello world in your screen .

here is a sample program;

import java.io.*;

public class samplewhile
{
public static void main(String args[])
{
//declaration
int start=1;
while(start<=5)
{
System.out.print("Hello World");
start++;
}
}
}