クラスで使用される頻度のリストを作成するには、文字列配列を使用する必要があります。
例:
String names[] = new String [50];
次に、名前を挿入する位置を次々と呼び出す必要があります。
例:
String names[0], then names[1], names[2] ... names[50],
それぞれに異なる名前が付けられ、JOptionPane.showInputDialogを使用して挿入されます ...
可能であれば、停止した次の位置から配列への挿入を続行したい
例:
inserted names[0],[1],[2] then stop... now again inserting names[3],[4] and going on...
これが私が今持っているものです...
// reserved to use in menu loop
int option1=0;
int option2=0;
// array that will keep all the classrom students names
String names[] = new String [50];
//in need to find a way to fill position after position of the array with names
names[0] = JOptionPane.showInputDialog("Please, insert student name");
// in need to find a way to call next position in awway
names[1] = JOptionPane.showInputDialog("Please, insert student name");