Code listings
Listing of
WhileExample.java
class
WhileExample
{
public static void main( String args[] )
{
int counter;
counter = 0;
while( counter < 5 )
{
System.out.println( counter );
counter = counter + 1;
}
}
}
Back to top

RITSEC - Global Campus
Copyright ?1999 RITSEC- Middlesex University. All rights reserved.
webmaster@globalcampus.com.eg
|