最近、ここで質問をして、配列を分割する方法を学びました。今、私は分離された配列を保存することをいじっています。私は自分でそれを理解しようとしていたので、このコードはおそらく非常に間違っていることを知っています。このコードの目的は、配列(最大10個の名前と10度)を分割した後、入力を格納できるかどうかを確認することでした。System.outの目的は、それらが保存されているかどうかを確認することでした。シンボルの結果が見つからないというエラーが表示され続けます。どんな助けでも大歓迎です。
import java.util.ArrayList;
import java.util.Arrays;
import javax.swing.JOptionPane;
public class PeerTutoring
{
public static void main(String[] args)
{
ArrayList<String> list = new ArrayList<String>();
int a = 0;
int b = 1;
int c = 0;
int d = 1;
for(int i=0;i<20;i++) {
String line;
line = JOptionPane.showInputDialog("Please enter tutor name and their highest earned degree.");
String[] result = line.split("\\s+");
String[] name = new result[a];
String[] degree = new result[b];
a++;
b++;
System.out.println(name[c]);
System.out.println(degree[d]);
c++;
d++;
}
}