- import javax.swing.JFrame;
- public class Ch00 {
- public static void main(String[] args) {
-
- int a=(int)(Math.random()*701);
- int b=(int)(Math.random()*701);
- int c=(int)(Math.random()*701);
- int d=(int)(Math.random()*701);
- JFrame fm=new JFrame();
- fm.setTitle("中毒了!!!!!");
- fm.setLocation(a, b);
- fm.setSize(c, d);
- fm.setVisible(true);
- fm.setResizable(false);
- fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
-
- }
- }
複製代碼 |