1: import javax.swing.*; 2: 3: public class WhileLoopGui 4: { 5: public static void main(String[] args) 6: { 7: int i = 1; 8: while(i <= 10) 9: { 10: JOptionPane.showMessageDialog( 11: null, i); 12: i++; 13: } 14: System.exit(0); 15: } 16: }