下列程序的作用是在屏幕上显示一个200×200大小的窗口,在横线上填入相应的语句。 import java.awt.*; public class Test extends Frame public static void main (String args[]) Test t=new Test ("Hello"); t.setSize (200,200); t.setBackground (Color.red); 【13】 ; public Test (String str) super(str);