Ho un problema a leggere un testo cosi formato:
3 4 8
A : B
D : E
F : S
Io ho scritto questo codice, ma dove sbaglio?
Scanner myScan = new Scanner(System.in);
Primo = myScan.nextInt();
Secondo = myScan.nextInt();
Terzo = myScan.nextInt();
while (myScan.hasNextLine()) {
if (count <= Primo) {
String[] temp = myScan.nextLine().split(" : ");
if (temp.length > 1) {
lista.add(new Doppia(temp[0], temp[1]));
}