import javax.swing.*; import java.awt.*; import java.awt.event.*; public class Primes { // Add any class or instance variables here. public static int n=100; public static boolean[] primes = new boolean[n]; public static int current=1; public static void initialize () { // Add any initialization code here. // This code will be called only once at the start of the program. for (int i=0 ; i