Purpose: JComboBox to list down ages that a user can select
I realize that I need an array of integers. What part of the Math functions in Java will allow me to easi
I don't quite understand why you need the Math functions.
This would work:
List age = new ArrayList(); for (int i = 1; i <= 100; ++i) { age.add(i); } JComboBox ageComboBox = new JComboBox(age.toArray());