-4

我需要与 Sleep() 和 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);
        }

        }
   }

我有错误

找不到标志

符号:方法睡眠(int)

位置:课堂示例

睡眠(1000);

请帮我解决这个问题

4

1 回答 1

1
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
于 2016-12-25T14:27:14.850 回答