I'm having problems with my for loop. Please assist me quickly. THANKS!
Code:
//java study
import javax.swing.*;
public class HELP
{
public HELP()
{
for(int i=1; i<=20;i++)
{
JOptionPane.showMessageDialog(null,i);
}
}
public static void main (String args[])
{
new HELP();
}
}