public class ModulusAnimation
{
public static void main( String[] args ) throws Exception
{
for ( int i=0; i<80; i++ )
{
if ( i%4 == 0 )
System.out.print("/\\/\\/\\/\\/\\\r");
else if ( i%4 == 1 )
System.out.print("----------\r");
else if ( i%4 == 2 )
System.out.print("\\/\\/\\/\\/\\/\r");
else if ( i%4 == 3 )
System.out.print("----------\r");
Thread.sleep(200);
}
}
}