Advertisement
JordanFarnell

Modulus Animation

Sep 30th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. package modulus.animation;
  2.  
  3. /*
  4.  * @author Froge
  5.  */
  6. public class ModulusAnimation {
  7.  
  8. @SuppressWarnings("SleepWhileInLoop")
  9.     public static void main(String[] args) throws Exception {
  10.         for ( int i=0; i<80; i++ )
  11.         {
  12.             if ( i%10 == 0 ) {
  13.                         System.out.print("Parkside Robotics is cool. \t");
  14.                     }
  15.             Thread.sleep(200);
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement