import javax.swing.JOptionPane;
public class Exercise17 {
public static void main(String[]args)
{
String [] month = new String []{"Januray","February","March","April","May"
,"June","July","August","September","October","November","December"};
for(String year : month)
{
JOptionPane.showMessageDialog(null,"Month of " + year );
}
}
}
No comments:
Post a Comment