ПОЧЕМУ У МЕНЯ НЕ ПОЛУЧАЛОСЬ public static void main(String[] args) throws InterruptedException { //Add your code here - добавь код тут TestThread test = new TestThread(); test.interrupt(); } //Add your code below - добавь код ниже public static class TestThread extends Thread{ public TestThread(){ start(); } @Override public void run() { super.run(); } } }