// Demonstrates the for statement. public class UnicodeBis { public static void main(String[] args) { for(char c=0; c<128 ; ) { for(int i=1; i<4; i++, c++) if(c !=26) // clearscreen System.out.print("valeur: "+ (int)c + " caractere: "+ c +" |"); System.out.println(); } } }