public class AnimationFuratas{
   public static void main( String args[] )
   {
      long TempoInicial, TempoFinal;

      for( int N = 0; N < 20; N ++ )
      {
         TempoFinal = TempoInicial = System.currentTimeMillis();
         
         while( TempoInicial + 1000 > TempoFinal ) //1 por segundo
         { 
            TempoFinal = System.currentTimeMillis();
         }
         
         System.out.println( "teste rudimentar" + TempoInicial );
      }
   }
}
         