Afficher le jeux de caractères de l’ISO Latin-1

Author:


{filelink=5492}

public class CaractereLatin1 {
  public static void main(String[] args) {
    System.out.println("Liste des Caract�res ISO LATIN-1");
    for (int x = 160; x < 255; x++) {
      System.out.print((char) x);
      System.out.print("  ");
      if (x % 8 == 7)
        System.out.print("n");
    }
  }
}
/* Affichage:
 *
 * Liste des Caract�res ISO LATIN-1
�  �  �  �  �  �  �  �
�  �  �  �  �  �  �  �
�  �  �  �  �  �  �  �
�  �  �  �  �  �  �  �
�  �  �  �  �  �  �  �
�  �  �  �  �  �  �  �
�  �  �  �  �  �  �  �
�  �  �  �  �  �  �  �
�  �  �  �  �  �  �  �
�  �  �  �  �  �  �  �
�  �  �  �  �  �  �  �
�  �  �  �  �  �  �
 *
 *
 *
 ****/

Leave a Reply

Your email address will not be published. Required fields are marked *

Leave a Reply

Your email address will not be published. Required fields are marked *