Ma leggendo qui: http://docs.oracle.com/javase/1.4.2/...m.html#println()Originariamente inviato da ramy89
Se vuoi vedere 242424 devi usare System.print invece di System.println.
System.println stampa caratteri UNICODE, il valore vet[i] viene letto come fosse un carattere UNICODE.
2 e 4 hanno valore <control>.
non ho trovato riferimenti a quello che haii detto tuprintln
public void println(int x)
Print an integer and then terminate the line. This method behaves as though it invokes print(int) and then println().
Parameters:
x - The int to be printed.
println
public void println()
Terminate the current line by writing the line separator string. The line separator string is defined by the system property line.separator, and is not necessarily a single newline character ('\n').
L'output è (in effetti l'avevo scambiato con print()):
2
4
2
4
2
4