Assignemnt #40 and Modulus Animation

Code

/// Name: Raff Lisbona
/// Period: 6
/// Program Name: Modulus Animation
/// File Name: ModulusAnimation.java
/// Date Finished: 10/16/2015

public class ModulusAnimation
{
	public static void main( String[] args ) throws Exception
	{
		for ( int i=0; i<80; i++ )
		{
			if ( i%10 == 0 )
				System.out.print("Rrrrrrrrr \r");
            else if ( i%10 == 1 )
                System.out.print("rRrrrrrrr \r");
            else if ( i%10 == 2 )
                System.out.print("rrRrrrrrr \r");
            else if ( i%10 == 3 )
                System.out.print("rrrRrrrrr \r");
            else if ( i%10 == 4 )
                System.out.print("rrrrRrrrr \r");
            else if ( i%10 == 5 )
                System.out.print("rrrrrRrrr \r");
            else if ( i%10 == 6 )
                System.out.print("rrrrrrRrr \r");
            else if ( i%10 == 7 )
                System.out.print("rrrrrrrRr \r");
            else if ( i%10 == 8 )
                System.out.print("rrrrrrrrR \r");

			Thread.sleep(200);
		}
		
	}
}

    

Picture of the output

Assignment 40