Wednesday 25 March 2015

PROGRAM FOR FUN!!!!!
JUST COPY IT ON JAVA FRIENDLY ENVIRONMENT LIKE BLUEJ AND SEE THE MAGIC.


PROGRAM:

import java.util.Scanner;
public class writer
{
    public static void main(String args[])throws InterruptedException{
        Scanner sc = new Scanner(System.in);
        int i;
        System.out.println("Enter a String to get repeated:");
        String str = sc.nextLine();
        for(i = 0 ; i<str.length() ; i++){
            System.out.print(str.charAt(i));
            Thread.sleep(200);
        }
    }
}


SEE IT FOR YOURSELF ;)

No comments:

Post a Comment