close
public class WhileCounter
{
public static void main ( String args[] )
{
int counter = 1 ;
while ( counter
{
System.out.printf( "%d " , counter );
++counter;
}
}
}
全站熱搜
public class WhileCounter
{
public static void main ( String args[] )
{
int counter = 1 ;
while ( counter
{
System.out.printf( "%d " , counter );
++counter;
}
}
}