Posts by Sinff_Yur • 21 points
1 post
-
2
votes1
answer2006
viewsA: breaking a file and storing it in a vector - in Java
The problem is on line 20: linhaF = texto.split(";"); A 26*26 vector has been created but it is being replaced with each iteration by the return of texto.split(";"), which is a size 26 vector, when…