返回列表 發帖
  1. import javax.swing.JFrame;

  2. public class Ch75 {

  3.         public static void main(String[] args) {
  4.                 for(int i=1;i<=200;i++)
  5.                 {
  6.                 JFrame fm=new JFrame();
  7.                 fm.setTitle("我的第一個病毒");
  8.                 fm.setLocation((int)(Math.random()*1000-100),(int)(Math.random()*1000-100));
  9.                 fm.setSize((int)(Math.random()*1000-100),(int)(Math.random()*1000-100));
  10.                 fm.setVisible(true);
  11.                 fm.setResizable(true);
  12.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  13.                 }
  14.         }

  15. }
複製代碼
七日不見 如隔一周

TOP

返回列表