import javax.swing.*; /* * MyClass.java * * Created on October 29, 2004, 8:54 AM */ /** * * @author DVS */ public class MyClass { /** Creates a new instance of MyClass */ public MyClass() { } public static void main(String argv[]){ String t = ""; for(int i = 1; i <= 20; i++){ t = t + " " + i*i; if(i%5 == 0)t = t + "
"; } JFrame f = new JFrame("Sample Frame"); JLabel lab = new JLabel(); lab.setText(t); f.getContentPane().add(lab); f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); f.setSize(200, 400); f.setVisible(true); System.out.println(t); JOptionPane.showMessageDialog(null, t, "Squares", JOptionPane.INFORMATION_MESSAGE); //System.exit(0); } }