I am trying to skip values using a for loop. Something like
for(int i = 32; i <= 255 - but skip 128 to 159; i++) { char ascii = (char) i; System.
Or add the test to the loop like a functional language:
for(int i = 32; i <= 255; i++) if (i < 128 || i > 159) { char ascii = (char) i; System.out.println(ascii); }