Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Random;
- public class Main
- {
- public static void main( String[] args ) throws InterruptedException {
- Random rng = new Random();
- int r;
- for ( int i=0; i<10000; i++ ) {
- r = 1 + rng.nextInt(6);
- if(r==1){
- first();
- } else if (r==2){
- second();
- } else if(r==3){
- third();
- } else if (r==4){
- fourth();
- } else{
- fifth();
- }
- Thread.sleep(1);
- }
- System.out.println("I pledge allegiance to the flag.");
- }
- public static void first()
- {
- System.out.print("I \r");
- }
- public static void second()
- {
- System.out.print(" pledge \r");
- }
- public static void third()
- {
- System.out.print(" allegiance \r");
- }
- public static void fourth()
- {
- System.out.print(" to the \r");
- }
- public static void fifth()
- {
- System.out.print(" flag.\r");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment