下面的程序的功能是从1~36的整数中随机选取7个数:第1次随机选择1~36中的一个数,第2次从剩下的35个数(第1次选中的数不包括其中)中随机选择一个数,...,重复这个过程,直到选中7个整数。请完成程序填空。import java.awt.*; import javax.swing.*; public class Test extends JApplet _____(1)_____ Runnable { int counter=0; Thread t; public void init() { t=___(2)___; //创建线程对象 t.start(); } public void run() { while( counter<10 ) { counter++; try { Thread.sleep(2000); } catch ( InterruptedException e ) { } repaint(); } } public void paint( Graphics g ) { setBackground(Color.black); g.setColor(Color.green); g.setFont(new Font("Times New Roman",Font.BOLD,35)); g.drawString( String.valueOf(counter),60+counter*20,60 ); } public void update(Graphics g){ paint(g); } }