jaypee's world programmer ".NET DEVELOPER"
this blog is all about my learnings on programming
Tuesday, April 13, 2010
while loop sample program
import java.io*;
public class loopwhile
{
public static void main(String args[])
{
int x=1;
while(x<=10)
{
System.out.print(x);
x++;
}
}
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment