can't find symbol sleep(int) & printen(int)

759 views Asked by At

I Want Help Related to Sleep() and printen()

    import java.util.*;
public class example
{
public static void main(String[]args)
{
    int i = 1;
    int a = 4;
    while( i < 4 )
        {
            i++;
            a--;
            sleep(1000);
            System.out.println("\t\t\t\t The Game Begins In...");
            System.out.print("\t\t\t\t " + a);
        }

        }
   }

I got Errors

cannot find symbol

symbol : method sleep(int)

location: class example

sleep(1000);

Please Help me to solve this

1

There are 1 answers

0
user7339819 On BEST ANSWER
import java.util.*;
public class example
{
public static void main(String[]args)
{
    int i = 1;
    int a = 4;
    while( i < 4 )
        {
            i++;
            a--;
            try {
            // thread to sleep for 1000 milliseconds
           Thread.sleep(100);
           } catch (Exception e) {
           System.out.println(e);
           }
            System.out.println("\t\t\t\t The Game Begins In...");
            System.out.print("\t\t\t\t " + a);
        }

        }
   }

Output

The Game Begins In...
                 3               The Game Begins In...
                 2               The Game Begins In...
                 1